Show / Hide Table of Contents

Class MicroUserModel

This class contains the bare minimum properties to represent a user in the interface.

Inheritance
System.Object
MicroUserModel
MinimalUserModel
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 Source

Email

Gets or sets the user's e-mail address.

Declaration
[StringLength(100)]
public string Email { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

FirstName

Gets or sets the first name.

Declaration
[StringLength(100)]
public string FirstName { get; set; }
Property Value
Type Description
System.String

The first name.

| Improve this Doc View Source

FullName

Gets or sets the user full name.

Declaration
public string FullName { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

LastName

Gets or sets the last name.

Declaration
[StringLength(100)]
public string LastName { get; set; }
Property Value
Type Description
System.String

The last name.

| Improve this Doc View Source

UserId

Gets or sets the unique identity of the user.

Declaration
[StringLength(450)]
public string UserId { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

UserName

Gets or sets the user name of the user.

Declaration
[StringLength(100)]
public string UserName { get; set; }
Property Value
Type Description
System.String
  • Improve this Doc
  • View Source
In This Article
Back to top Copyright (c) GlobalLink Vasont