// // Copyright (c) alveus.dev. All rights reserved. Licensed under the MIT License. // using Astral.Core.Attributes.EntityAnnotation; namespace Astral.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; } }