using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ObjectModel.Config { /// /// 抽奖包 /// public class TurntableLotteryPack { #region 客户端赋值 /// /// 玩家Id /// public int UserId; #endregion /// /// 一个月的连续抽奖签到次数 /// public int Count; /// /// 抽中的类型 /// public int Type; /// /// 1成功 2失败今天已经签到过了 /// public int ResultCode; /// /// 是否是活动 /// public bool Activity; } }