LoginModel.cs 326 B

123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. namespace GreenTree.Nachtragsmanagement.Web.Models.Login
  6. {
  7. public class LoginModel
  8. {
  9. public string Username { get; set; }
  10. public string Password { get; set; }
  11. public bool IsPermanent { get; set; }
  12. }
  13. }