with cards properly? I have the card model which follows
using System; using System.Collections.Generic; namespace _99Engine { public class CardModel { public string CardDisplayName { get; set; } public List<int> CardValues { get; set; } public CardModel(string cardDisplayName, params int[] values) { CardDisplayName = cardDisplayName; foreach (var item in values) { CardValues.Add(item); } } } }
Обсуждают сегодня