Class CodeEmailViewModel
Base class for all e-mail messages that should include a code to the user.
Inherited Members
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: IRM.AspNetCore.Identity.Mail
Assembly: IRM.AspNetCore.Identity.Mail.dll
Syntax
public abstract class CodeEmailViewModel : EmailViewModel
Constructors
CodeEmailViewModel(EmailAddress, String)
Creates a new instance of CodeEmailViewModel.
Declaration
protected CodeEmailViewModel(EmailAddress to, string code)
Parameters
EmailAddress
to
The reciever of the email. |
String
code
The code that should be send to the user. |
Properties
Code
Gets or sets the code that should be send to the user.
Declaration
public string Code { get; set; }
Property Value
String
|