feat: initial commit - HJHA game server full source
6 major server modules (PdkFriendServer/GlobalSever/ServerCore/GameModule/GameNetModule) + game logic (GameFix/GameDAL/ServerData) + network layer (NetWorkMessage) + data layer (ObjectModel) + utilities (MrWu/Core/Config/CloudAPI/dll) + adapters (zyxAdapter/base) .NET 8.0 C# solution, 16 projects, 958 source files
This commit is contained in:
42
ObjectModel/Config/TurntableLotteryPack.cs
Normal file
42
ObjectModel/Config/TurntableLotteryPack.cs
Normal file
@ -0,0 +1,42 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace ObjectModel.Config
|
||||
{
|
||||
/// <summary>
|
||||
/// 抽奖包
|
||||
/// </summary>
|
||||
public class TurntableLotteryPack
|
||||
{
|
||||
#region 客户端赋值
|
||||
/// <summary>
|
||||
/// 玩家Id
|
||||
/// </summary>
|
||||
public int UserId;
|
||||
|
||||
#endregion
|
||||
|
||||
/// <summary>
|
||||
/// 一个月的连续抽奖签到次数
|
||||
/// </summary>
|
||||
public int Count;
|
||||
|
||||
/// <summary>
|
||||
/// 抽中的类型
|
||||
/// </summary>
|
||||
public int Type;
|
||||
|
||||
/// <summary>
|
||||
/// 1成功 2失败今天已经签到过了
|
||||
/// </summary>
|
||||
public int ResultCode;
|
||||
|
||||
/// <summary>
|
||||
/// 是否是活动
|
||||
/// </summary>
|
||||
public bool Activity;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user