Getting ready to seed more data

This commit is contained in:
gamer147
2026-05-23 15:47:23 -04:00
parent 631e42289a
commit 5f44ee0c7e
74 changed files with 499 additions and 50 deletions

View File

@@ -1,10 +1,11 @@
using MessagePack;
using SVSim.EmulatedEntrypoint.Models.Dtos.Requests.Common;
using System.Text.Json.Serialization;
namespace SVSim.EmulatedEntrypoint.Models.Dtos.Requests.Deck;
/// <summary>
/// /deck/info standard request is `DeckFormatRequest`. Copy-source overload adds
/// /deck/info 窶・standard request is `DeckFormatRequest`. Copy-source overload adds
/// `create_deck_format` (the format the user is creating the new deck IN). Server can
/// ignore create_deck_format and return the standard shape; only matters for the
/// cross-format deck-copy UI flow.
@@ -12,5 +13,6 @@ namespace SVSim.EmulatedEntrypoint.Models.Dtos.Requests.Deck;
[MessagePackObject]
public class DeckInfoRequest : DeckFormatRequest
{
[JsonPropertyName("create_deck_format")]
[Key("create_deck_format")] public int? CreateDeckFormat { get; set; }
}