Files
SVSimServer/SVSim.EmulatedEntrypoint/Models/Dtos/Requests/Common/DeckFormatRequest.cs
2026-05-23 14:18:18 -04:00

14 lines
408 B
C#

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; }
}