Class ResetPasswordEmailViewModel
Represents the information that is needed when creating a reset password e-mail.
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 class ResetPasswordEmailViewModel : EmailViewModel
Constructors
ResetPasswordEmailViewModel(EmailAddress, String)
Creates a new instance of ResetPasswordEmailViewModel.
Declaration
public ResetPasswordEmailViewModel(EmailAddress to, string callbackUrl)
Parameters
EmailAddress
to
The reciever of the email. |
String
callbackUrl
The url that the user will use to reset the password. |
Properties
CallbackUrl
Gets or sets the url that the user will use to reset the password.
Declaration
public string CallbackUrl { get; set; }
Property Value
String
|