18 lines
No EOL
438 B
C#
18 lines
No EOL
438 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace WebsitePanel.WebDavPortal.Models
|
|
{
|
|
public class AccountModel
|
|
{
|
|
[Required]
|
|
[Display(Name = @"Login")]
|
|
public string Login { get; set; }
|
|
|
|
[Required]
|
|
[DataType(DataType.Password)]
|
|
[Display(Name = @"Password")]
|
|
public string Password { get; set; }
|
|
|
|
public string LdapError { get; set; }
|
|
}
|
|
} |