Class ExternAccount
Represents the credentials for an external account
Inheritance
System.Object
ExternAccount
Namespace: Simplic.Framework.Base
Assembly: Simplic.Framework.Base.dll
Syntax
public class ExternAccount : UI.MVC.ViewModelBase
Constructors
| Improve this Doc View SourceExternAccount()
Initialize new extern account
Declaration
public ExternAccount()
Properties
| Improve this Doc View SourceAvailableAccountTypes
Gets or sets a list of available account types
Declaration
public ObservableCollection<ExternAccountType> AvailableAccountTypes { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.ObjectModel.ObservableCollection<ExternAccountType> |
Id
Gets or sets the current id
Declaration
public Guid Id { get; set; }
Property Value
Type | Description |
---|---|
System.Guid |
IsActive
Gets or sets whether the current user is active
Declaration
public bool IsActive { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Password
Gets or sets the external account passwed (hashed)
Declaration
public byte[] Password { get; set; }
Property Value
Type | Description |
---|---|
System.Byte[] |
Type
Gets or sets the external account type
Declaration
public ExternAccountType Type { get; set; }
Property Value
Type | Description |
---|---|
ExternAccountType |
UserId
Gets or sets the simplic userid
Declaration
public int UserId { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
UserName
Gets or sets the external username
Declaration
public string UserName { get; set; }
Property Value
Type | Description |
---|---|
System.String |