// ***********************************************************************
// Assembly : Unity
// Author : Kimch
// Created : 2018-2-8
// Description : 帮会列表中所需要的数据
// Last Modified By : Kimch
// Last Modified On :
// ***********************************************************************
//
//
// ***********************************************************************
namespace G
{
///
///
///
public class GuildPreviewInfo
{
//帮会GUID
public long guildId
{
get;
set;
}
//帮会GUID
public string guildName
{
get;
set;
}
//帮会等级
public int guildLevel
{
get;
set;
}
//帮主姓名
public string guildChiefName
{
get;
set;
}
//帮会当前人数
public int guildCurMemberNum
{
get;
set;
}
//帮会当前战力
public int guildCombatValue
{
get;
set;
}
///
///
///
public int guildMaxMemberNum
{
get { return 0; }// GlobalDefine.GetGuildMemberMax(guildLevel); }
}
///
///
///
public bool isEnemyGuild
{
get;
set;
}
public int guildCurApplyNum
{
get;
set;
}
///
///
///
public int guildMaxApplyNum
{
get;
set;
}
///
/// 公告
///
public string guildDeclaration
{
get;
set;
}
}
}