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
43 lines
906 B
C#
43 lines
906 B
C#
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;
|
|
}
|
|
}
|