22 lines
404 B
C#
22 lines
404 B
C#
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<string> Tags {get; set;}
|
|
|
|
public string Category {get; set;}
|
|
|
|
public string HTMLTemplate {get; set;}
|
|
|
|
public string Values { get; set; }
|
|
}
|