using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace Domain.Entities.Emails; public class EmailTemplate { public Guid Id {get; set;} public string Name {get; set;} public ICollection Tags {get; set;} public string Category {get; set;} public string HTMLTemplate {get; set;} public string Values { get; set; } }