Seeding updated
This commit is contained in:
12
SVSim.Database/Models/LoadingExclusionCardEntry.cs
Normal file
12
SVSim.Database/Models/LoadingExclusionCardEntry.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using SVSim.Database.Common;
|
||||
|
||||
namespace SVSim.Database.Models;
|
||||
|
||||
/// <summary>
|
||||
/// Cards excluded from loading-screen art rotation, from /load/index data.loading_exclusion_card_list.
|
||||
/// References ShadowverseCardEntry.Id but no FK.
|
||||
/// </summary>
|
||||
public class LoadingExclusionCardEntry : BaseEntity<long>
|
||||
{
|
||||
public long CardId { get => Id; set => Id = value; }
|
||||
}
|
||||
Reference in New Issue
Block a user