예제 #1
0
        private CoinFlipMatch
        (
            int lookUpId,
            string roundId,
            string hash,
            string salt,
            string percentage,
            MatchStatus status,
            List <CoinFlipBet> bets,
            DateTime?timerStarted,
            JackpotMatchSetting setting
        )
        {
            LookUpId     = lookUpId;
            RoundId      = roundId;
            Hash         = hash;
            _salt        = salt;
            _percentage  = percentage;
            Status       = status;
            TimerStarted = timerStarted;
            Setting      = setting;
            Bets         = bets;

            ReadableStatus = status.ToString();
        }
예제 #2
0
        public JackpotMatch
        (
            string roundId,
            string hash,
            string salt,
            string percentage,
            MatchStatus status,
            List <Bet> bets,
            DateTime?timerStarted,
            JackpotMatchSetting setting
        )
        {
            RoundId      = roundId;
            Hash         = hash;
            _salt        = salt;
            _percentage  = percentage;
            Status       = status;
            TimerStarted = timerStarted;
            Setting      = setting;
            Bets         = bets;

            ReadableStatus = status.ToString();
        }