//------------------------------------------------------------------------------
//
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
//
//------------------------------------------------------------------------------
// ***************************************************************************
// * 作者: lfingy
// * 创建时间: 2019-07-15
// * 用途: 公会法阵
// ****************************************************************************/
// Generated from: guildMagicMatrixHandler.proto
// Note: requires additional types generated from: common.proto
namespace pomelo.area
{
//---------------------------------------------------------------------------------------
///
/// 法阵信息
///
[global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GuildMagicMatrixInfo")]
public partial class GuildMagicMatrixInfo : global::ProtoBuf.IExtensible
{
public GuildMagicMatrixInfo() {}
private int _level = default(int);
///
/// 当前等级
///
[global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"level", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
[global::System.ComponentModel.DefaultValue(default(int))]
public int level
{
get { return _level; }
set { _level = value; }
}
private int _maxLevel = default(int);
///
/// 最大等级
///
[global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"maxLevel", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
[global::System.ComponentModel.DefaultValue(default(int))]
public int maxLevel
{
get { return _maxLevel; }
set { _maxLevel = value; }
}
private int _monsterMagic = default(int);
///
/// 当前妖气
///
[global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"monsterMagic", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
[global::System.ComponentModel.DefaultValue(default(int))]
public int monsterMagic
{
get { return _monsterMagic; }
set { _monsterMagic = value; }
}
private int _monsterMagicLevelUp = default(int);
///
/// 升级需要的妖气
///
[global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"monsterMagicLevelUp", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
[global::System.ComponentModel.DefaultValue(default(int))]
public int monsterMagicLevelUp
{
get { return _monsterMagicLevelUp; }
set { _monsterMagicLevelUp = value; }
}
private int _meditationSitNum = default(int);
///
/// 每日剩余打坐次数
///
[global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"meditationSitNum", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
[global::System.ComponentModel.DefaultValue(default(int))]
public int meditationSitNum
{
get { return _meditationSitNum; }
set { _meditationSitNum = value; }
}
private int _transferClassExpTimes = default(int);
///
/// 每日剩余传功次数
///
[global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"transferClassExpTimes", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
[global::System.ComponentModel.DefaultValue(default(int))]
public int transferClassExpTimes
{
get { return _transferClassExpTimes; }
set { _transferClassExpTimes = value; }
}
private int _receiveClassExpNumTimes = default(int);
///
/// 每日剩余被传功次数
///
[global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"receiveClassExpNumTimes", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
[global::System.ComponentModel.DefaultValue(default(int))]
public int receiveClassExpNumTimes
{
get { return _receiveClassExpNumTimes; }
set { _receiveClassExpNumTimes = value; }
}
private global::ProtoBuf.IExtension extensionObject;
global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
{ return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
}
//---------------------------------------------------------------------------------------
///
/// 获取法阵信息
///
[global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GetMagicMatrixInfoRequest")]
public partial class GetMagicMatrixInfoRequest : global::ProtoBuf.IExtensible
{
public GetMagicMatrixInfoRequest() {}
private global::ProtoBuf.IExtension extensionObject;
global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
{ return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
}
//---------------------------------------------------------------------------------------
[global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GetMagicMatrixInfoResponse")]
public partial class GetMagicMatrixInfoResponse : global::ProtoBuf.IExtensible
{
public GetMagicMatrixInfoResponse() {}
private int _s2c_code;
[global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
public int s2c_code
{
get { return _s2c_code; }
set { _s2c_code = value; }
}
private string _s2c_msg = "";
[global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
[global::System.ComponentModel.DefaultValue("")]
public string s2c_msg
{
get { return _s2c_msg; }
set { _s2c_msg = value; }
}
private pomelo.area.GuildMagicMatrixInfo _guildMagicMatrixInfo = null;
[global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"guildMagicMatrixInfo", DataFormat = global::ProtoBuf.DataFormat.Default)]
[global::System.ComponentModel.DefaultValue(null)]
public pomelo.area.GuildMagicMatrixInfo guildMagicMatrixInfo
{
get { return _guildMagicMatrixInfo; }
set { _guildMagicMatrixInfo = value; }
}
private global::ProtoBuf.IExtension extensionObject;
global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
{ return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
}
//---------------------------------------------------------------------------------------
///
/// 法阵升级
///
[global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GuildUpgradeMagicMatrixLevelRequest")]
public partial class GuildUpgradeMagicMatrixLevelRequest : global::ProtoBuf.IExtensible
{
public GuildUpgradeMagicMatrixLevelRequest() {}
private global::ProtoBuf.IExtension extensionObject;
global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
{ return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
}
//---------------------------------------------------------------------------------------
[global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GuildUpgradeMagicMatrixLevelResponse")]
public partial class GuildUpgradeMagicMatrixLevelResponse : global::ProtoBuf.IExtensible
{
public GuildUpgradeMagicMatrixLevelResponse() {}
private int _s2c_code;
[global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
public int s2c_code
{
get { return _s2c_code; }
set { _s2c_code = value; }
}
private string _s2c_msg = "";
[global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
[global::System.ComponentModel.DefaultValue("")]
public string s2c_msg
{
get { return _s2c_msg; }
set { _s2c_msg = value; }
}
private pomelo.area.GuildMagicMatrixInfo _guildMagicMatrixInfo = null;
[global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"guildMagicMatrixInfo", DataFormat = global::ProtoBuf.DataFormat.Default)]
[global::System.ComponentModel.DefaultValue(null)]
public pomelo.area.GuildMagicMatrixInfo guildMagicMatrixInfo
{
get { return _guildMagicMatrixInfo; }
set { _guildMagicMatrixInfo = value; }
}
private global::ProtoBuf.IExtension extensionObject;
global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
{ return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
}
//---------------------------------------------------------------------------------------
///
/// 打坐开始
///
[global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GuildSitStartRequest")]
public partial class GuildSitStartRequest : global::ProtoBuf.IExtensible
{
public GuildSitStartRequest() {}
private global::ProtoBuf.IExtension extensionObject;
global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
{ return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
}
//---------------------------------------------------------------------------------------
[global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GuildSitStartResponse")]
public partial class GuildSitStartResponse : global::ProtoBuf.IExtensible
{
public GuildSitStartResponse() {}
private int _s2c_code;
[global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
public int s2c_code
{
get { return _s2c_code; }
set { _s2c_code = value; }
}
private string _s2c_msg = "";
[global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
[global::System.ComponentModel.DefaultValue("")]
public string s2c_msg
{
get { return _s2c_msg; }
set { _s2c_msg = value; }
}
private global::ProtoBuf.IExtension extensionObject;
global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
{ return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
}
//---------------------------------------------------------------------------------------
///
/// 打坐或传功领取一次奖励
///
[global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GuildSitOrTransRewardRequest")]
public partial class GuildSitOrTransRewardRequest : global::ProtoBuf.IExtensible
{
public GuildSitOrTransRewardRequest() {}
private bool _c2s_is_sit;
[global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"c2s_is_sit", DataFormat = global::ProtoBuf.DataFormat.Default)]
public bool c2s_is_sit
{
get { return _c2s_is_sit; }
set { _c2s_is_sit = value; }
}
private global::ProtoBuf.IExtension extensionObject;
global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
{ return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
}
//---------------------------------------------------------------------------------------
[global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GuildSitOrTransRewardResponse")]
public partial class GuildSitOrTransRewardResponse : global::ProtoBuf.IExtensible
{
public GuildSitOrTransRewardResponse() {}
private int _s2c_code;
[global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
public int s2c_code
{
get { return _s2c_code; }
set { _s2c_code = value; }
}
private string _s2c_msg = "";
[global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
[global::System.ComponentModel.DefaultValue("")]
public string s2c_msg
{
get { return _s2c_msg; }
set { _s2c_msg = value; }
}
private bool _s2c_is_sit;
[global::ProtoBuf.ProtoMember(3, IsRequired = true, Name=@"s2c_is_sit", DataFormat = global::ProtoBuf.DataFormat.Default)]
public bool s2c_is_sit
{
get { return _s2c_is_sit; }
set { _s2c_is_sit = value; }
}
private int _s2c_value = default(int);
[global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"s2c_value", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
[global::System.ComponentModel.DefaultValue(default(int))]
public int s2c_value
{
get { return _s2c_value; }
set { _s2c_value = value; }
}
private global::ProtoBuf.IExtension extensionObject;
global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
{ return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
}
//---------------------------------------------------------------------------------------
///
/// 法阵净妖
///
[global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GuildClearYaoQiRequest")]
public partial class GuildClearYaoQiRequest : global::ProtoBuf.IExtensible
{
public GuildClearYaoQiRequest() {}
private global::ProtoBuf.IExtension extensionObject;
global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
{ return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
}
//---------------------------------------------------------------------------------------
[global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GuildClearYaoQiResponse")]
public partial class GuildClearYaoQiResponse : global::ProtoBuf.IExtensible
{
public GuildClearYaoQiResponse() {}
private int _s2c_code;
[global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
public int s2c_code
{
get { return _s2c_code; }
set { _s2c_code = value; }
}
private string _s2c_msg = "";
[global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
[global::System.ComponentModel.DefaultValue("")]
public string s2c_msg
{
get { return _s2c_msg; }
set { _s2c_msg = value; }
}
private global::ProtoBuf.IExtension extensionObject;
global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
{ return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
}
//---------------------------------------------------------------------------------------
///
/// 法阵传功
///
[global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GuildTransferExpRequest")]
public partial class GuildTransferExpRequest : global::ProtoBuf.IExtensible
{
public GuildTransferExpRequest() {}
private global::ProtoBuf.IExtension extensionObject;
global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
{ return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
}
//---------------------------------------------------------------------------------------
[global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GuildTransferExpResponse")]
public partial class GuildTransferExpResponse : global::ProtoBuf.IExtensible
{
public GuildTransferExpResponse() {}
private int _s2c_code;
[global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
public int s2c_code
{
get { return _s2c_code; }
set { _s2c_code = value; }
}
private string _s2c_msg = "";
[global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
[global::System.ComponentModel.DefaultValue("")]
public string s2c_msg
{
get { return _s2c_msg; }
set { _s2c_msg = value; }
}
private global::ProtoBuf.IExtension extensionObject;
global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
{ return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
}
//---------------------------------------------------------------------------------------
[global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"OnMagicMatrixActionPush")]
public partial class OnMagicMatrixActionPush : global::ProtoBuf.IExtensible
{
public OnMagicMatrixActionPush() {}
private int _s2c_sit_can_num;
///
/// 剩余打坐次数
///
[global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_sit_can_num", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
public int s2c_sit_can_num
{
get { return _s2c_sit_can_num; }
set { _s2c_sit_can_num = value; }
}
private int _s2c_clear_can_value;
///
/// 公会剩余可净妖数值
///
[global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"s2c_clear_can_value", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
public int s2c_clear_can_value
{
get { return _s2c_clear_can_value; }
set { _s2c_clear_can_value = value; }
}
private int _s2c_transfer_can_to;
///
/// 可主动传功次数
///
[global::ProtoBuf.ProtoMember(3, IsRequired = true, Name=@"s2c_transfer_can_to", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
public int s2c_transfer_can_to
{
get { return _s2c_transfer_can_to; }
set { _s2c_transfer_can_to = value; }
}
private int _s2c_transfer_can_rec;
///
/// 可接受传功次数
///
[global::ProtoBuf.ProtoMember(4, IsRequired = true, Name=@"s2c_transfer_can_rec", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
public int s2c_transfer_can_rec
{
get { return _s2c_transfer_can_rec; }
set { _s2c_transfer_can_rec = value; }
}
private int _s2c_self_yao_value = default(int);
///
/// 玩家自己当前剩余可提供的妖气值
///
[global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"s2c_self_yao_value", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
[global::System.ComponentModel.DefaultValue(default(int))]
public int s2c_self_yao_value
{
get { return _s2c_self_yao_value; }
set { _s2c_self_yao_value = value; }
}
private int _s2c_trans_b_uexp = default(int);
///
/// 玩家自己当前剩余可提供的妖气值
///
[global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"s2c_trans_b_uexp", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
[global::System.ComponentModel.DefaultValue(default(int))]
public int s2c_trans_b_uexp
{
get { return _s2c_trans_b_uexp; }
set { _s2c_trans_b_uexp = value; }
}
private global::ProtoBuf.IExtension extensionObject;
global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
{ return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
}
}