using System.ComponentModel.DataAnnotations; namespace StalwartSimpleLoginMiddleware.Entities; public class Member { [Required] [StringLength(88)] public string ApiKeyId { get; set; } [Required] [StringLength(254)] public string Email { get; set; } public bool IsExternal { get; set; } public virtual ApiKey ApiKey { get; set; } }