using SVSim.Database.Common; namespace SVSim.Database.Models; /// /// One sleeve-shop series (a themed collection — e.g. series 3019 "BattlePass sleeves", /// series 3004 "Granblue Fantasy collab"). PK = wire series_id. IsEnabled gates whether /// /sleeve/info renders this series. /// public class SleeveShopSeriesEntry : BaseEntity { public bool IsNew { get; set; } public bool IsEnabled { get; set; } public List Products { get; set; } = new(); }