2021-05-21 22:50:06 +08:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace ET
|
|
|
|
|
{
|
|
|
|
|
public class ActiveComponent:Entity
|
|
|
|
|
{
|
|
|
|
|
public int currSigninConfigId;
|
|
|
|
|
public bool isGetSingninReward;
|
2021-05-25 01:14:19 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// 累计签到
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int signinMonthCount;
|
|
|
|
|
|
|
|
|
|
public List<int> gotSigninMonthTimesList = new List<int>();
|
2021-05-21 22:50:06 +08:00
|
|
|
|
}
|
|
|
|
|
}
|