using System;
using System.Collections.Generic;
namespace HDL_ON
{
[Serializable]
public class RegionInfoRes
{
public string RegionID { get; set; }
///
/// 区域名称(如:广州、深圳等)
///
public string RegionName { get; set; }
///
/// 住宅名称
///
public string Name { get;set; }
///
/// 住宅地址
///
public string Address { get; set; }
//{
// {
// "Id": "1107487",
// "HomeStatus": 2,
// "UserGuid": "22980",
// "Name": "啊",
// "Address": null,
// "Longitude": 0.0,
// "Latitude": 0.0,
// "RegionName": null,
// "Company": null,
// "ContactPerson": null,
// "ContactPersonPhone": null,
// "Remarks": null,
// "ChangeDate": null,
//"AccountType": 0,
// "CreatedOnUtc": "2020-05-27T06:52:03",
public bool IsOthreShare = false;
// "MainUserDistributedMark": null,
public List homeGateways = new List();
}
public class HomeGateways
{
public string GatewayUniqueId = "";
}
}