| 12345678910111213141516171819202122 |
- namespace LAPS_XMLQC_Service.Models
- {
- public class servermasterModel
- {
- public int serverid { get; set; }
- public string servertype { get; set; }
- public string servername { get; set; }
- public string ipaddress { get; set; }
- public string username { get; set; }
- public string password { get; set; }
- public string domain { get; set; }
- public string root_path { get; set; }
- public int createdby { get; set; }
- public string createddate { get; set; }
- public int? modifiedby { get; set; }
- public string modifieddate { get; set; }
- public int active { get; set; }
- public string serverpath { get; set; }
- public string ostype { get; set; }
- }
- }
|