update swagger implementation

This commit is contained in:
voltsrage
2026-06-26 04:22:47 +08:00
parent 869006e5e7
commit 9777a335c5
8 changed files with 126 additions and 36 deletions
@@ -0,0 +1,7 @@
/// <summary>Authenticated user profile returned by GET /api/v1/auth/me.</summary>
public record UserProfileResponse(
Guid Id,
string Username,
string FullName,
string Role
);