| 12345678910111213141516 |
- using System.Collections.Generic;
- using MongoDB.Bson.Serialization.Attributes;
- namespace ET
- {
- public class ShopInfosComponent : Entity, IAwake, IDestroy, ITransfer, IUnitCache, IDeserialize
- {
- [BsonIgnore]
- public Dictionary<int, ShopItemInfo> ShopItemInfosDic = new Dictionary<int, ShopItemInfo>();
- //服装店购买次数
- public int BuyTimesInClothingShop;
- public string StrId;
- }
- }
|