DTOs for index mostly done, doing DB models
This commit is contained in:
12
SVSim.EmulatedEntrypoint/Models/Dtos/ArenaConfig.cs
Normal file
12
SVSim.EmulatedEntrypoint/Models/Dtos/ArenaConfig.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using MessagePack;
|
||||
|
||||
namespace SVSim.EmulatedEntrypoint.Models.Dtos;
|
||||
|
||||
[MessagePackObject]
|
||||
public class ArenaConfig
|
||||
{
|
||||
[Key("use_challenge_two_pick_premium_card")]
|
||||
public int UseChallengePickTwoPremiumCard { get; set; }
|
||||
[Key("challenge_two_pick_sleeve_id")]
|
||||
public int ChallengePickTwoCardSleeve { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user