websitepanel/WebsitePanel/Sources/WebsitePanel.WebDavPortal/Models/AccountModel.cs
2015-04-15 05:23:08 -07:00

21 lines
No EOL
567 B
C#

using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using WebsitePanel.Providers.HostedSolution;
using WebsitePanel.WebDavPortal.Models.Common;
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; }
}
}