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,13 @@
using MessagePack;
namespace SVSim.EmulatedEntrypoint.Models.Dtos.Requests.Common;
/// <summary>
/// Common request shape for endpoints scoped by deck format (`/deck/info`,
/// `/practice/deck_list`, etc.). Spec: common/types.ts.md#deck-format-scoped-requests.
/// </summary>
[MessagePackObject]
public class DeckFormatRequest : BaseRequest
{
[Key("deck_format")] public int DeckFormat { get; set; }
}