NewcomerRewardComponent.cs 462 B

1234567891011121314151617181920
  1. using System.Collections.Generic;
  2. using MongoDB.Bson.Serialization.Attributes;
  3. using MongoDB.Bson.Serialization.Options;
  4. namespace ET
  5. {
  6. public class NewcomerRewardComponent : Entity, IAwake, IDestroy, ITransfer, IUnitCache
  7. {
  8. public string StrId = "";
  9. //新人登录奖励领取状态
  10. public bool Status;
  11. //开启状态
  12. public bool OpenStatus;
  13. //领取时间
  14. public long Time;
  15. }
  16. }