Files
SVSimServer/SVSim.Database/Models/SpotCardEntry.cs
2026-05-23 16:25:49 -04:00

15 lines
410 B
C#

using SVSim.Database.Common;
namespace SVSim.Database.Models;
/// <summary>
/// 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.
/// </summary>
public class SpotCardEntry : BaseEntity<long>
{
public long CardId { get => Id; set => Id = value; }
public int Cost { get; set; }
}