feat(Core): update DTOs and shared models

This commit is contained in:
2026-08-09 21:01:38 +02:00
parent 6337e63a77
commit 5475c3ac51
58 changed files with 3418 additions and 30 deletions
@@ -0,0 +1,22 @@
namespace FinlyticCore.Models.Auth;
/// <summary>
/// DTO for updating user role or active status by an admin.
/// </summary>
public class UpdateUserRequestDto
{
/// <summary>
/// Updated user role (User, Premium, Admin).
/// </summary>
public string? Role { get; set; }
/// <summary>
/// Updated active state of user.
/// </summary>
public bool? IsActive { get; set; }
/// <summary>
/// Updated full name.
/// </summary>
public string? FullName { get; set; }
}