Files
SVSimServer/SVSim.EmulatedEntrypoint/Models/Dtos/Requests/ArenaTwoPick/CardChooseRequest.cs
gamer147 f272690a31 feat(http): ArenaTwoPickController (6 actions)
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-31 11:15:53 -04:00

11 lines
280 B
C#

using System.Text.Json.Serialization;
using MessagePack;
namespace SVSim.EmulatedEntrypoint.Models.Dtos.Requests.ArenaTwoPick;
[MessagePackObject]
public class CardChooseRequest
{
[JsonPropertyName("selected_id")] [Key("selected_id")] public long SelectedId { get; set; }
}