using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ObjectModel.Club
{
public class ClubBureauScore
{
///
///
///
public ClubBureauScore() { }
public BureauScorePlayer[] Players;
public int ClubId;
public string weiyima;
public string wayId;
public int game_serid;
public int ModuleId;
//SendFightRecordToClub
}
public class BureauScorePlayer
{
///
/// 玩家Id
///
public int UserId;
///
/// 玩家到现在的总分
///
public decimal Score;
public string NickName;
///
/// 参加比赛的俱乐部ID
///
public int ClubId;
public BureauScorePlayer() { }
}
}