feat(profile): /profile/update_official_mark_display

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
gamer147
2026-06-12 22:54:52 -04:00
parent 37cb8b5eeb
commit 398764a4cc
3 changed files with 69 additions and 1 deletions

View File

@@ -0,0 +1,13 @@
// SVSim.EmulatedEntrypoint/Models/Dtos/Requests/Profile/ProfileUpdateOfficialMarkDisplayRequest.cs
using MessagePack;
using System.Text.Json.Serialization;
namespace SVSim.EmulatedEntrypoint.Models.Dtos.Requests.Profile;
[MessagePackObject]
public class ProfileUpdateOfficialMarkDisplayRequest : BaseRequest
{
[JsonPropertyName("is_official_mark_displayed")]
[Key("is_official_mark_displayed")]
public int IsOfficialMarkDisplayed { get; set; }
}