using System; using System.Collections.Generic; namespace HDL_ON.Entity { /// /// 2020-11-16 待修改调整 /// 住宅成员的信息列表 /// 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 string id; /// /// /// public string homeId; /// /// /// public string homeRegionId; /// /// /// public string childAccountId; /// /// /// public string childAccountRegionId; /// /// 子账户类型 ORDINARY、DEBUG、ADMIN /// public string childAccountType; /// /// 是否允许远程控制 /// public bool isRemoteControl; /// /// 昵称1 /// public string nickName; /// /// /// public string createTime; } public class ShareData { /// /// 备份名称 /// public string ShareName = ""; /// /// 备份的数据ID /// public string DistributedMark = ""; /// /// 备份所属的住宅ID /// public string HouseDistributedMark = ""; /// /// 子账号ID /// public string SubAccountDistributedMark = ""; /// /// 功能数据 /// public byte[] ShareDataBytes; } }