feature: Degraded Operations Visibility

This commit is contained in:
voltsrage
2026-06-23 23:18:31 +08:00
parent 940e27c0ac
commit 4399996448
81 changed files with 3949 additions and 323 deletions
@@ -0,0 +1,8 @@
public record ClinicalUserResponse(
Guid Id,
string Username,
string DisplayName,
string Role,
bool IsActive,
DateTimeOffset CreatedAt,
DateTimeOffset? LastLoginAt);
@@ -0,0 +1,5 @@
public record CreateUserRequest(
string Username,
string Password,
string DisplayName,
string Role);
@@ -0,0 +1,4 @@
public record UpdateUserRequest(
string? DisplayName,
string? Role,
bool? IsActive);