| 1234567891011121314151617181920 |
- using System.Collections.Generic;
- using MongoDB.Bson.Serialization.Attributes;
- using MongoDB.Bson.Serialization.Options;
- namespace ET
- {
- public class NewcomerRewardComponent : Entity, IAwake, IDestroy, ITransfer, IUnitCache
- {
- public string StrId = "";
- //新人登录奖励领取状态
- public bool Status;
-
- //开启状态
- public bool OpenStatus;
- //领取时间
- public long Time;
- }
- }
|