stalwart-simplelogin-middle.../StalwartSimpleLoginMiddleware/Entities/Member.cs
2025-05-10 05:25:22 -04:00

14 lines
No EOL
354 B
C#

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; }
}