/* * 作者:吴隆健 * 日期: 2019-04-22 * 时间: 14:15 * */ using System; namespace Server.Pack { /// /// 竞技比赛数据变化包 /// public class ClubDataChange { /// /// 1房卡 /// public int style; /// /// 竞技比赛id /// public int clubid; /// /// 值 /// public int value; public override string ToString() { return string.Format("[ClubDataChange Style={0}, Clubid={1}, Value={2}]", style, clubid, value); } } }