feature: No user management endpoints (create, update, deactivate)

This commit is contained in:
voltsrage
2026-06-27 15:45:01 +08:00
parent 5a2e95c984
commit 299e6e1453
13 changed files with 684 additions and 4 deletions
@@ -0,0 +1 @@
public record ChangePasswordRequest(string CurrentPassword, string NewPassword);
@@ -0,0 +1,6 @@
public record CreateUserRequest(
string Username,
string Password,
string FullName,
string Role
);
@@ -0,0 +1 @@
public record ResetPasswordRequest(string NewPassword);
@@ -0,0 +1,5 @@
public record UpdateUserRequest(
string? FullName,
string? Role,
bool? IsActive
);