using SVSim.Database.Common; namespace SVSim.Database.Models; public class ShadowverseCardSetEntry : BaseEntity { /// /// The internal name of the set. /// public string Name { get; set; } = string.Empty; /// /// The cards in the set. /// public List Cards { get; set; } = new List(); public bool IsInRotation { get; set; } public bool IsBasic { get; set; } }