| 123456789101112131415161718192021222324252627 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- namespace WK_KLI_LAPS_COMMONTOOL_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; }
- }
- }
|