Class EmailViewModel
Base class for all mail view models with common properties.
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
Namespace: IRM.Mail
Assembly: IRM.dll
Syntax
public abstract class EmailViewModel
Constructors
EmailViewModel()
EmailViewModel(EmailAddress)
Creates a new instance of EmailViewModel.
Declaration
protected EmailViewModel(EmailAddress to)
Parameters
EmailAddress
to
The receiver of the email. |
Properties
Subject
Gets or sets the subject of the email.
Declaration
public string Subject { get; set; }
Property Value
String
|
To
Gets or sets the receiver of the email.
Declaration
public List<EmailAddress> To { get; }
Property Value
List<EmailAddress>
|