namespace AuthHex.Models { public class Role { public Guid RoleId { get; set; } public string Code { get; set; } = string.Empty; // ADMIN, USER, STAFF public string?Name { get; set; } = string.Empty; public bool? IsSystemRole { get; set; } public DateTime CreatedAt { get; set; } = DateTime.UtcNow; } }