Forgot unversioned xd

This commit is contained in:
gamer147
2026-05-23 14:18:18 -04:00
parent 6b70850b7b
commit bf6ddf5428
46 changed files with 43610 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
using MessagePack;
using SVSim.EmulatedEntrypoint.Models.Dtos.Requests.Common;
namespace SVSim.EmulatedEntrypoint.Models.Dtos.Requests.Deck;
/// <summary>
/// /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.
/// </summary>
[MessagePackObject]
public class DeckInfoRequest : DeckFormatRequest
{
[Key("create_deck_format")] public int? CreateDeckFormat { get; set; }
}