Files
SVSimServer/SVSim.EmulatedEntrypoint/Models/Dtos/UserFormatDeckInfo.cs
2026-05-23 15:47:23 -04:00

16 lines
415 B
C#

using MessagePack;
using System.Text.Json.Serialization;
namespace SVSim.EmulatedEntrypoint.Models.Dtos;
[MessagePackObject]
public class UserFormatDeckInfo
{
[JsonPropertyName("format")]
[Key("format")]
public string Format { get; set; } = string.Empty;
[JsonPropertyName("user_deck_list")]
[Key("user_deck_list")]
public List<UserDeck> UserDecks { get; set; } = new List<UserDeck>();
}