Forgot unversioned xd

This commit is contained in:
gamer147
2026-05-23 14:18:18 -04:00
parent 6b70850b7b
commit bf6ddf5428
46 changed files with 43610 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
using MessagePack;
namespace SVSim.EmulatedEntrypoint.Models.Dtos.Requests.Deck;
[MessagePackObject]
public class DeckUpdateRandomLeaderSkinRequest : BaseRequest
{
[Key("deck_format")] public int DeckFormat { get; set; }
[Key("deck_no")] public int DeckNo { get; set; }
[Key("leader_skin_id_list")] public List<int>? LeaderSkinIdList { get; set; }
}