feat(emblem): /emblem/update_emblem sets viewer.SelectedEmblem (ownership-validated)

This commit is contained in:
gamer147
2026-06-13 08:16:19 -04:00
parent bc110e2274
commit 911374106f
3 changed files with 91 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
using MessagePack;
using System.Text.Json.Serialization;
namespace SVSim.EmulatedEntrypoint.Models.Dtos.Requests.Emblem;
[MessagePackObject]
public class EmblemUpdateRequest : BaseRequest
{
// Spec note: emblem_id is a long on the wire (UserInfo.SelectedEmblemId is also long).
[JsonPropertyName("emblem_id")]
[Key("emblem_id")]
public long EmblemId { get; set; }
}