MonthCardComponent.cs 266 B

12345678910111213
  1. namespace ET
  2. {
  3. public class MonthCardComponent : Entity, IAwake, ITransfer
  4. {
  5. //金卡倒计时id
  6. public long GoldTimerId;
  7. //黑金卡倒计时id
  8. public long BlackGoldTimerId;
  9. public string StrId = "";
  10. }
  11. }