Class MicroUserModel
This class contains the bare minimum properties to represent a user in the interface.
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Vasont.Publisher.Models.Security
Assembly: Vasont.Publisher.Models.dll
Syntax
public class MicroUserModel
Properties
| Improve this Doc View SourceGets or sets the user's e-mail address.
Declaration
[StringLength(100)]
public string Email { get; set; }
Property Value
Type | Description |
---|---|
System.String |
FirstName
Gets or sets the first name.
Declaration
[StringLength(100)]
public string FirstName { get; set; }
Property Value
Type | Description |
---|---|
System.String | The first name. |
FullName
Gets or sets the user full name.
Declaration
public string FullName { get; set; }
Property Value
Type | Description |
---|---|
System.String |
LastName
Gets or sets the last name.
Declaration
[StringLength(100)]
public string LastName { get; set; }
Property Value
Type | Description |
---|---|
System.String | The last name. |
UserId
Gets or sets the unique identity of the user.
Declaration
[StringLength(450)]
public string UserId { get; set; }
Property Value
Type | Description |
---|---|
System.String |
UserName
Gets or sets the user name of the user.
Declaration
[StringLength(100)]
public string UserName { get; set; }
Property Value
Type | Description |
---|---|
System.String |