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

13 lines
344 B
C#

using SVSim.Database.Common;
namespace SVSim.Database.Models;
/// <summary>
/// Cards currently in the reprinted list from /load/index data.reprinted_base_card_ids.
/// References ShadowverseCardEntry.Id but no FK.
/// </summary>
public class ReprintedCardEntry : BaseEntity<long>
{
public long CardId { get => Id; set => Id = value; }
}