using System; using System.Collections.Generic; namespace TheGameExtreme.model.@event { public class HandCardChangedEventArgs { public Card NewCard { get; set; } public int Position { get; set; } public HandCardChangedEventArgs(Card newCard, int position) { NewCard = newCard; Position = position; } } }