You've already forked taptap2024_GJ_chidouren
29 lines
716 B
C#
29 lines
716 B
C#
namespace System.Game.Account
|
|
{
|
|
public class AwardOfflineDuration
|
|
{
|
|
public int GamePart;
|
|
public double Duration;
|
|
public float ExtOffset; //额外加成系数
|
|
|
|
/// <summary>
|
|
/// 用于FJson 必须要有无参构造
|
|
/// </summary>
|
|
public AwardOfflineDuration()
|
|
{
|
|
}
|
|
|
|
public AwardOfflineDuration(int gamePart, double duration)
|
|
{
|
|
GamePart = gamePart;
|
|
Duration = duration;
|
|
}
|
|
|
|
public AwardOfflineDuration(int gamePart, double duration, float extOffset)
|
|
{
|
|
GamePart = gamePart;
|
|
Duration = duration;
|
|
ExtOffset = extOffset;
|
|
}
|
|
}
|
|
} |