namespace API.Contracts.Auth { public class CurrentUserResponse { public Guid Id { get; set; } public string? UserName { get; set; } = string.Empty; public List Roles { get; set; } = new(); public bool IsActive { get; set; } public bool MustChangePassword { get; set; } } }