13 lines
303 B
C#
13 lines
303 B
C#
using MessagePack;
|
|
|
|
namespace SVSim.EmulatedEntrypoint.Models.Dtos;
|
|
|
|
[MessagePackObject]
|
|
public class UserFormatDeckInfo
|
|
{
|
|
[Key("format")]
|
|
public string Format { get; set; } = string.Empty;
|
|
|
|
[Key("user_deck_list")]
|
|
public List<UserDeck> UserDecks { get; set; } = new List<UserDeck>();
|
|
} |