feature: RBAC + Clinical Audit Logging

This commit is contained in:
voltsrage
2026-06-21 15:46:55 +08:00
parent a43db52813
commit 5af6ab490e
83 changed files with 4281 additions and 70 deletions
@@ -1 +1 @@
public record AcknowledgeAlertRequest(string ClinicianId, string? Note);
public record AcknowledgeAlertRequest(string? Note);
@@ -0,0 +1 @@
public record LoginRequest(string Username, string Password);
@@ -0,0 +1,7 @@
public record LoginResponse(
string AccessToken,
DateTimeOffset ExpiresAt,
Guid UserId,
string Username,
string DisplayName,
string Role);