| | |
| | | /// <summary>
|
| | | /// 用户图标文件
|
| | | /// </summary>
|
| | | [Newtonsoft.Json.JsonIgnore]
|
| | | public string UserIconFile = string.Empty;
|
| | | /// <summary>
|
| | | /// 用户图标文件是否改变
|
| | | /// </summary>
|
| | | [Newtonsoft.Json.JsonIgnore]
|
| | | public bool UserIconFileChanged = false;
|
| | | /// <summary>
|
| | | /// 用户头像数据(临时用,会置空)
|
| | | /// </summary>
|
| | | public byte[] HeadImage = null;
|
| | | /// <summary>
|
| | | /// 手势密码(临时用,会置空)
|
| | | /// </summary>
|
| | | public string GesturePwd = string.Empty;
|
| | | /// <summary>
|
| | | /// 密码验证(临时用,会置空)
|
| | | /// </summary>
|
| | | public string StringPwd = string.Empty;
|
| | | }
|
| | |
|
| | | /// <summary>
|
| | |
| | | /// 手机号
|
| | | /// </summary>
|
| | | public string Phone = string.Empty;
|
| | | /// <summary>
|
| | | /// 头像数据
|
| | | /// </summary>
|
| | | public byte[] HeadImage = null;
|
| | | }
|
| | |
|
| | | #endregion
|
| | |
| | | public class MemberShardInfoData
|
| | | {
|
| | | /// <summary>
|
| | | /// 成员的全部分享数据,里面包含所有的文件(keys:房间文件名 value:文件名)
|
| | | /// </summary>
|
| | | public Dictionary<string, HashSet<string>> dicAllMemberShard = new Dictionary<string, HashSet<string>>();
|
| | | /// <summary>
|
| | | /// 全部的分享文件的主键(keys:文件名 value:主键)
|
| | | /// </summary>
|
| | | public Dictionary<string, string> dicAllShardKeys = new Dictionary<string, string>();
|
| | | /// <summary>
|
| | | /// 分享房间的对象(它是从云端来的,keys:文件名)
|
| | | /// </summary>
|
| | | public Dictionary<string, Common.Room> dicShardRoom = new Dictionary<string, Common.Room>();
|
| | | public Dictionary<string, Room> dicShardRoom = new Dictionary<string, Common.Room>();
|
| | | /// <summary>
|
| | | /// 分享的楼层
|
| | | /// </summary>
|
| | | public Dictionary<string, string> dicShardFloor = new Dictionary<string, string>();
|
| | | /// <summary>
|
| | | /// 临时变量(这个东西为null,即不是新分享的房间,否则是新分享的房间。用完记得置空)
|
| | | /// </summary>
|
| | | public Room TempRoom = null;
|
| | | /// <summary>
|
| | | /// 是否需要刷新
|
| | | /// </summary>
|
| | |
| | | }
|
| | |
|
| | | #endregion
|
| | |
|
| | | #region ■ 住宅信息类__________________________
|
| | |
|
| | | /// <summary>
|
| | | /// 编辑住宅的启动参数
|
| | | /// </summary>
|
| | | public class EditorResidencePra : IfacePraCommon
|
| | | {
|
| | | /// <summary>
|
| | | /// RequestVersion
|
| | | /// </summary>
|
| | | public string RequestVersion = Common.CommonPage.RequestVersion;
|
| | | /// <summary>
|
| | | /// LoginAccessToken
|
| | | /// </summary>
|
| | | public string LoginAccessToken = Common.Config.Instance.Token;
|
| | | /// <summary>
|
| | | /// ZigbeeHomeId
|
| | | /// </summary>
|
| | | public string HomeId = "";
|
| | | /// <summary>
|
| | | /// Name
|
| | | /// </summary>
|
| | | public string Name = string.Empty;
|
| | | /// <summary>
|
| | | /// 经度
|
| | | /// </summary>
|
| | | public double Longitude = 0;
|
| | | /// <summary>
|
| | | /// 纬度
|
| | | /// </summary>
|
| | | public double Latitude = 0;
|
| | | }
|
| | | #endregion
|
| | | }
|