servermasterModel.cs 767 B

12345678910111213141516171819202122
  1. namespace LAPS_XMLQC_Service.Models
  2. {
  3. public class servermasterModel
  4. {
  5. public int serverid { get; set; }
  6. public string servertype { get; set; }
  7. public string servername { get; set; }
  8. public string ipaddress { get; set; }
  9. public string username { get; set; }
  10. public string password { get; set; }
  11. public string domain { get; set; }
  12. public string root_path { get; set; }
  13. public int createdby { get; set; }
  14. public string createddate { get; set; }
  15. public int? modifiedby { get; set; }
  16. public string modifieddate { get; set; }
  17. public int active { get; set; }
  18. public string serverpath { get; set; }
  19. public string ostype { get; set; }
  20. }
  21. }