ShopItemInfo.cs 207 B

123456789
  1. namespace ET
  2. {
  3. public class ShopItemInfo : Entity, IAwake<int> ,IDestroy, ISerializeToEntity
  4. {
  5. public int ShopItemID;
  6. public int BuyTimes;
  7. public string StartTime;
  8. }
  9. }