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