17 lines
395 B
C#
17 lines
395 B
C#
namespace MyOffice.Data.Models.Notifications;
|
|
|
|
public enum EmailTemplateEnum
|
|
{
|
|
PasswordRestore,
|
|
}
|
|
|
|
public class EmailTemplate
|
|
{
|
|
public string Id { get; set; }
|
|
public DateTime CreatedOn { get; set; }
|
|
public string Description { get; set; }
|
|
public string Subject { get; set; }
|
|
public string Sender { get; set; }
|
|
public string SenderName { get; set; }
|
|
public string Template { get; set; }
|
|
} |