namespace API.Contracts.Auth { public class CreateUserRequest { public required string UserName { get; set; } public required string StartPassword { get; set; } public bool IsAdmin { get; set; } = false; public bool IsActive { get; set; } = true; } }