namespace API.Contracts.Auth { public class CurrentUserResponse { public Guid Id { get; set; } public string UserName { get; set; } = string.Empty; public bool IsAdmin { get; set; } public bool IsActive { get; set; } public bool MustChangePassword { get; set; } } }