Seeding updated
This commit is contained in:
12
SVSim.Database/Models/ReprintedCardEntry.cs
Normal file
12
SVSim.Database/Models/ReprintedCardEntry.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user