コード例 #1
0
ファイル: Notifier.cs プロジェクト: dylannorthrup/hexapidocs
            public bool Is(NotifierCardDefinition other)
            {
                if (other != null)
                        if ((Flags == other.Flags) && (Guid == other.Guid))
                            return true;

                    return false;
            }
コード例 #2
0
ファイル: Notifier.cs プロジェクト: dylannorthrup/hexapidocs
 public DraftCardPicked(string user, ulong tournament, NotifierCardDefinition card)
     : base(user)
 {
     Card         = card;
         Message      = GetMessageName();
         TournamentId = tournament;
 }