using System;
|
|
namespace HDL_ON
|
{
|
[Serializable]
|
public class GatewayRes
|
{
|
public int Id { get; set; }
|
|
public string MAC { get; set; }
|
|
public string ProjectName { get; set; }
|
|
public string UserName { get; set; }
|
|
public string GroupName { get; set; }
|
|
public string IPAddress { get; set; }
|
|
public int Port { get; set; }
|
|
public int SubnetID { get; set; }
|
|
public int DeviceID { get; set; }
|
|
public int Type { get; set; }
|
|
public string IsValid { get; set; }
|
|
public string Password { get; set; }
|
|
public string Region { get; set; }
|
}
|
}
|