servermasterModel.cs 877 B

123456789101112131415161718192021222324252627
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. namespace WK_KLI_LAPS_COMMONTOOL_Service.Models
  6. {
  7. public class servermasterModel
  8. {
  9. public int serverid { get; set; }
  10. public string servertype { get; set; }
  11. public string servername { get; set; }
  12. public string ipaddress { get; set; }
  13. public string username { get; set; }
  14. public string password { get; set; }
  15. public string domain { get; set; }
  16. public string root_path { get; set; }
  17. public int createdby { get; set; }
  18. public string createddate { get; set; }
  19. public int? modifiedby { get; set; }
  20. public string modifieddate { get; set; }
  21. public int active { get; set; }
  22. public string serverpath { get; set; }
  23. public string ostype { get; set; }
  24. }
  25. }