| 1234567891011121314151617 |
- using System.Collections.Generic;
- using MongoDB.Bson.Serialization.Attributes;
- namespace ET
- {
- /// <summary>
- /// 活动部件合成组成
- /// </summary>
- public class ItemSyntheticComponent : Entity, IAwake, IDestroy, IDeserialize, ITransfer, IUnitCache
- {
- public string StrId = "";
- //key: ActivityId_SuitId_ItemId, value:部件合成详情
- [BsonIgnore]
- public Dictionary<string, ItemSyntheticInfo> ItemSyntheticInfoDic = new Dictionary<string, ItemSyntheticInfo>();
- }
- }
|