using System;
using System.Collections.Generic;
namespace HDL_ON.Entity
{
///
/// 住宅成员的信息列表
///
public class ResidenceMemberInfo
{
public ResidenceMemberInfo()
{
}
public string Account = "";
public string UserName = "";
public string SubAccountDistributedMark = "";
public string DistributedMark = "";
public string Nickname = "";
public int AccountType = 0;
///
///
///
public bool IsAllowRemoteCtrl = false;
///
/// 是否允许子账号创建场景
///
public bool IsAllowCreateScene = false;
public string headImagePagePath = "LoginIcon/2.png";
///
/// 子账号获得的当前住宅的功能数据
///
public List CurResidenceShareDate = new List();
}
public class ShareData
{
///
/// 备份名称
///
public string ShareName = "";
///
/// 备份的数据ID
///
public string DistributedMark = "";
///
/// 备份所属的住宅ID
///
public string HouseDistributedMark = "";
///
/// 子账号ID
///
public string SubAccountDistributedMark = "";
///
/// 功能数据
///
public byte[] ShareDataBytes;
}
}