ShopInfosComponent.cs 440 B

12345678910111213141516
  1. using System.Collections.Generic;
  2. using MongoDB.Bson.Serialization.Attributes;
  3. namespace ET
  4. {
  5. public class ShopInfosComponent : Entity, IAwake, IDestroy, ITransfer, IUnitCache, IDeserialize
  6. {
  7. [BsonIgnore]
  8. public Dictionary<int, ShopItemInfo> ShopItemInfosDic = new Dictionary<int, ShopItemInfo>();
  9. //服装店购买次数
  10. public int BuyTimesInClothingShop;
  11. public string StrId;
  12. }
  13. }