refactor(bootstrap): migrate mypage-index globals to seed files
This commit is contained in:
10
SVSim.Bootstrap/Models/Seed/SpecialDeckFormatSeed.cs
Normal file
10
SVSim.Bootstrap/Models/Seed/SpecialDeckFormatSeed.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace SVSim.Bootstrap.Models.Seed;
|
||||
|
||||
public sealed class SpecialDeckFormatSeed
|
||||
{
|
||||
[JsonPropertyName("id")] public int Id { get; set; }
|
||||
[JsonPropertyName("deck_format")] public string DeckFormat { get; set; } = "";
|
||||
[JsonPropertyName("end_time")] public string EndTime { get; set; } = "";
|
||||
}
|
||||
Reference in New Issue
Block a user