using System; namespace DominionBase.Players.AI.Bots { public class CardPriority { public string Name { get; set; } public int PlayPriority { get; set; } public int DiscardPriority { get; set; } public Type CardType { get; set; } } }