namespace FinlyticCore.Models.Auth;
///
/// DTO for updating user role or active status by an admin.
///
public class UpdateUserRequestDto
{
///
/// Updated user role (User, Premium, Admin).
///
public string? Role { get; set; }
///
/// Updated active state of user.
///
public bool? IsActive { get; set; }
///
/// Updated full name.
///
public string? FullName { get; set; }
}