Adaptive.ReactiveTrader.Contract.CurrencyPairUpdatesDto.CurrencyPairUpdatesDto C# (CSharp) Method

CurrencyPairUpdatesDto() public method

public CurrencyPairUpdatesDto ( IList updates, bool isStateOfTheWorld, bool isStale ) : System.Collections.Generic
updates IList
isStateOfTheWorld bool
isStale bool
return System.Collections.Generic
        public CurrencyPairUpdatesDto(IList<CurrencyPairUpdateDto> updates, bool isStateOfTheWorld, bool isStale)
        {
            Updates = updates;
            IsStateOfTheWorld = isStateOfTheWorld;
            IsStale = isStale;
        }
CurrencyPairUpdatesDto