| | |
| | | /// <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>
|
| | |
| | | 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>
|
| | | public bool Refresh = true;
|