feat(user-mypage): UserMyPageController + DTOs + persistence tests

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
gamer147
2026-06-09 16:46:49 -04:00
parent b447f5032d
commit 9ff6c70faf
4 changed files with 240 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
using MessagePack;
namespace SVSim.EmulatedEntrypoint.Models.Dtos.UserMyPage;
/// <summary>
/// Empty response payload. The client's <c>MyPageSettingUpdateTask.Parse()</c> is the default
/// pass-through; server just acknowledges.
/// </summary>
[MessagePackObject(true)]
public sealed class UserMyPageUpdateResponse
{
}