feat(pack): /pack/get_leader_skin_owned_status (empty per-class buckets)

This commit is contained in:
gamer147
2026-06-12 23:26:29 -04:00
parent c870b95be9
commit 30b8af2d16
3 changed files with 61 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
using MessagePack;
using System.Text.Json.Serialization;
using SVSim.EmulatedEntrypoint.Models.Dtos.Requests;
namespace SVSim.EmulatedEntrypoint.Models.Dtos.Requests.Pack;
[MessagePackObject]
public class PackGetLeaderSkinOwnedStatusRequest : BaseRequest
{
[JsonPropertyName("parent_gacha_id")]
[Key("parent_gacha_id")]
public int ParentGachaId { get; set; }
}