Class RegistrationResult
Class RegistrationResult.
Inheritance
System.Object
RegistrationResult
Namespace: ISynergy.Framework.Core.Models.Accounts
Assembly: ISynergy.Framework.Core.dll
Syntax
public class RegistrationResult : object
Constructors
View SourceRegistrationResult(Guid, String, String, String)
Initializes a new instance of the RegistrationResult class.
Declaration
public RegistrationResult(Guid userId, string account, string email, string token)
Parameters
Type | Name | Description |
---|---|---|
Guid | userId | The user identifier. |
System.String | account | The account. |
System.String | The email. |
|
System.String | token | The token. |
Properties
View SourceAccount
Gets the account.
Declaration
public string Account { get; }
Property Value
Type | Description |
---|---|
System.String | The account. |
Gets the email.
Declaration
public string Email { get; }
Property Value
Type | Description |
---|---|
System.String | The email. |
Token
Gets the token.
Declaration
public string Token { get; }
Property Value
Type | Description |
---|---|
System.String | The token. |
UserId
Gets the user identifier.
Declaration
public Guid UserId { get; }
Property Value
Type | Description |
---|---|
Guid | The user identifier. |