| 123456789101112131415161718 |
- using System.Collections.Generic;
- using MongoDB.Bson.Serialization.Attributes;
- namespace ET
- {
- // 摘要数据同步组件组件
- public class OpenRoleInfosSyncComponent : Entity, IAwake
- {
- //SceneSyncDictionary
- public Dictionary<int, HashSet<long>> SceneSyncDictionary = new Dictionary<int, HashSet<long>>();
- //SceneChangeDictionary
- public HashSet<long> Changes = new HashSet<long>();
- [BsonIgnore] public Dictionary<int, List<OtherRoleInfoProto>> TempOtherRoleInfoProtos =
- new Dictionary<int, List<OtherRoleInfoProto>>();
- }
- }
|