using SVSim.Database.Common; namespace SVSim.Database.Models; /// /// One row per rentable "spot card" from /load/index data.spot_cards (dict {card_id: cost}). /// References ShadowverseCardEntry.Id but no FK — bootstrap warns on orphans. /// public class SpotCardEntry : BaseEntity { public long CardId { get => Id; set => Id = value; } public int Cost { get; set; } }