using Galaeth.Core.Attributes.EntityAnnotation; namespace Galaeth.Core.Entities; /// /// Entity representing a blacklisted email address domain. /// [TableMapping("emailDomainBlacklist")] public class EmailDomainBlacklist { /// /// The blacklisted domain. /// [PrimaryKey] [ColumnMapping("domain")] public string Domain { get; set; } /// /// When the record was created. /// [ColumnMapping("createdAt")] public DateTime CreatedAt { get; set; } }