namespace Email.Data.Entities; // composite PK (Key + Language) — BaseEntity not applicable public sealed class EmailTemplateEntity { public string Key { get; set; } = string.Empty; public string Language { get; set; } = string.Empty; public string Value { get; set; } = string.Empty; public string Description { get; set; } = string.Empty; public DateTime UpdatedAt { get; set; } public string OperatorCopy { get; set; } = string.Empty; }