Class EmailTemplate
Inheritance
EmailTemplate
Assembly: OEMS.Core.dll
Syntax
public class EmailTemplate
Properties
Body
Declaration
[Required]
public string Body { get; set; }
Property Value
Id
Declaration
[Key]
public Guid Id { get; set; }
Property Value
Name
Declaration
[Required]
[StringLength(100)]
public string Name { get; set; }
Property Value
Notes
Declaration
public string Notes { get; set; }
Property Value
Organization
Declaration
[ForeignKey("OrganizationId")]
public virtual Organization Organization { get; set; }
Property Value
OrganizationId
Declaration
[Required]
public Guid OrganizationId { get; set; }
Property Value
ProcessStepTemplates
Declaration
public virtual ICollection<ProcessStepTemplate> ProcessStepTemplates { get; set; }
Property Value
Subject
Declaration
[Required]
[StringLength(200)]
public string Subject { get; set; }
Property Value
Variables
Declaration
public string Variables { get; set; }
Property Value