Esempio n. 1
0
            public bool Is(NotifierCardDefinition other)
            {
                if (other != null)
                        if ((Flags == other.Flags) && (Guid == other.Guid))
                            return true;

                    return false;
            }
Esempio n. 2
0
 public DraftCardPicked(string user, ulong tournament, NotifierCardDefinition card)
     : base(user)
 {
     Card         = card;
         Message      = GetMessageName();
         TournamentId = tournament;
 }