using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Web; namespace GreenTree.Nachtragsmanagement.Web.Models.Login { public class LoginModel { [Required] public string Username { get; set; } [Required] public string Password { get; set; } public bool? IsPermanent { get; set; } } }