23 lines
513 B
C#
23 lines
513 B
C#
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; }
|
|
}
|