DTOs for index mostly done, doing DB models
This commit is contained in:
13
SVSim.EmulatedEntrypoint/Models/Dtos/UserFormatDeckInfo.cs
Normal file
13
SVSim.EmulatedEntrypoint/Models/Dtos/UserFormatDeckInfo.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
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>();
|
||||
}
|
||||
Reference in New Issue
Block a user