feat(emblem): /emblem/emblem_list returns owned ids
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
using MessagePack;
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace SVSim.EmulatedEntrypoint.Models.Dtos.Responses.Emblem;
|
||||
|
||||
[MessagePackObject]
|
||||
public class EmblemListEntry
|
||||
{
|
||||
[JsonPropertyName("emblem_id")]
|
||||
[Key("emblem_id")]
|
||||
public int EmblemId { get; set; }
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
using MessagePack;
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace SVSim.EmulatedEntrypoint.Models.Dtos.Responses.Emblem;
|
||||
|
||||
[MessagePackObject]
|
||||
public class EmblemListResponse
|
||||
{
|
||||
[JsonPropertyName("user_emblem_list")]
|
||||
[Key("user_emblem_list")]
|
||||
public List<EmblemListEntry> UserEmblemList { get; set; } = new();
|
||||
}
|
||||
Reference in New Issue
Block a user