BuildFeed/Models/ViewModel/LoginUser.cs
2014-10-10 23:57:02 +01:00

23 lines
522 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Web;
namespace BuildFeed.Models.ViewModel
{
public class LoginUser
{
[Required]
[DisplayName("Username")]
public string UserName { get; set; }
[Required]
[DisplayName("Password")]
public string Password { get; set; }
[DisplayName("Remember me")]
public bool RememberMe { get; set; }
}
}