View Source
Class LoginModel
Inheritance
System.Object
Assembly: Umbraco.Web.Common.dll
Syntax
public class LoginModel : PostRedirectModel
Properties
View Source
Password
Declaration
[Required]
[DataType(DataType.Password)]
[Display(Name = "Password")]
[StringLength(256)]
public string Password { get; set; }
Property Value
Type |
Description |
System.String |
|
View Source
RememberMe
Declaration
[Display(Name = "Remember me?")]
public bool RememberMe { get; set; }
Property Value
Type |
Description |
System.Boolean |
|
View Source
Username
Declaration
[Required]
[Display(Name = "User name")]
public string Username { get; set; }
Property Value
Type |
Description |
System.String |
|