ItemSyntheticComponent.cs 530 B

1234567891011121314151617
  1. using System.Collections.Generic;
  2. using MongoDB.Bson.Serialization.Attributes;
  3. namespace ET
  4. {
  5. /// <summary>
  6. /// 活动部件合成组成
  7. /// </summary>
  8. public class ItemSyntheticComponent : Entity, IAwake, IDestroy, IDeserialize, ITransfer, IUnitCache
  9. {
  10. public string StrId = "";
  11. //key: ActivityId_SuitId_ItemId, value:部件合成详情
  12. [BsonIgnore]
  13. public Dictionary<string, ItemSyntheticInfo> ItemSyntheticInfoDic = new Dictionary<string, ItemSyntheticInfo>();
  14. }
  15. }