namespace MyAi.Models.Data.Entities; public sealed class TemplateEntity { 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; } }