LoginModel.cs 411 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations;
  4. using System.Linq;
  5. using System.Web;
  6. namespace GreenTree.Nachtragsmanagement.Web.Models.Login
  7. {
  8. public class LoginModel
  9. {
  10. [Required]
  11. public string Username { get; set; }
  12. [Required]
  13. public string Password { get; set; }
  14. public bool? IsPermanent { get; set; }
  15. }
  16. }