Search Results for

    Show / Hide Table of Contents

    Class EmailTemplate

    Inheritance
    object
    EmailTemplate
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: OEMS.Core.Domain
    Assembly: OEMS.Core.dll
    Syntax
    public class EmailTemplate

    Properties

    Body

    Declaration
    [Required]
    public string Body { get; set; }
    Property Value
    Type Description
    string

    Id

    Declaration
    [Key]
    public Guid Id { get; set; }
    Property Value
    Type Description
    Guid

    Name

    Declaration
    [Required]
    [StringLength(100)]
    public string Name { get; set; }
    Property Value
    Type Description
    string

    Notes

    Declaration
    public string Notes { get; set; }
    Property Value
    Type Description
    string

    Organization

    Declaration
    [ForeignKey("OrganizationId")]
    public virtual Organization Organization { get; set; }
    Property Value
    Type Description
    Organization

    OrganizationId

    Declaration
    [Required]
    public Guid OrganizationId { get; set; }
    Property Value
    Type Description
    Guid

    ProcessStepTemplates

    Declaration
    public virtual ICollection<ProcessStepTemplate> ProcessStepTemplates { get; set; }
    Property Value
    Type Description
    ICollection<ProcessStepTemplate>

    Subject

    Declaration
    [Required]
    [StringLength(200)]
    public string Subject { get; set; }
    Property Value
    Type Description
    string

    Variables

    Declaration
    public string Variables { get; set; }
    Property Value
    Type Description
    string
    In this article
    Back to top Generated by DocFX