//------------------------------------------------------------------------------
//
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
//
//------------------------------------------------------------------------------
// ***************************************************************************
// * 作者: 詹斗池
// * 创建时间: 2019-5-15
// * 用途: 技能-强化
// * 维护成员: 詹斗池
// ****************************************************************************/
// Generated from: skillStrongHandler.proto
namespace pomelo.area
{
//---------------------------------------------------------------------------------------
///
/// 强化技能数据信息
///
[global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"SkillStrongBaseInfo")]
public partial class SkillStrongBaseInfo : global::ProtoBuf.IExtensible
{
public SkillStrongBaseInfo() {}
private int _s2c_baseskillid;
///
/// 基础技能id
///
[global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_baseskillid", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
public int s2c_baseskillid
{
get { return _s2c_baseskillid; }
set { _s2c_baseskillid = value; }
}
private int _s2c_skillid;
[global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"s2c_skillid", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
public int s2c_skillid
{
get { return _s2c_skillid; }
set { _s2c_skillid = value; }
}
private int _s2c_level;
[global::ProtoBuf.ProtoMember(3, IsRequired = true, Name=@"s2c_level", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
public int s2c_level
{
get { return _s2c_level; }
set { _s2c_level = value; }
}
private int _s2c_type;
///
/// 技能目前操作状态:0未解锁 1未学习 2.可升级
///
[global::ProtoBuf.ProtoMember(4, IsRequired = true, Name=@"s2c_type", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
public int s2c_type
{
get { return _s2c_type; }
set { _s2c_type = value; }
}
private int _s2c_branchtype;
///
/// 分支类型1/2(左/右)
///
[global::ProtoBuf.ProtoMember(5, IsRequired = true, Name=@"s2c_branchtype", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
public int s2c_branchtype
{
get { return _s2c_branchtype; }
set { _s2c_branchtype = value; }
}
private int _s2c_pos;
///
/// 技能对应的槽位
///
[global::ProtoBuf.ProtoMember(6, IsRequired = true, Name=@"s2c_pos", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
public int s2c_pos
{
get { return _s2c_pos; }
set { _s2c_pos = 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=@"SkillStrongBranch")]
public partial class SkillStrongBranch : global::ProtoBuf.IExtensible
{
public SkillStrongBranch() {}
private int _s2c_baseskillid;
///
/// 基础技能id
///
[global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_baseskillid", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
public int s2c_baseskillid
{
get { return _s2c_baseskillid; }
set { _s2c_baseskillid = value; }
}
private int _s2c_equip_branch;
///
/// 携带的分支
///
[global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"s2c_equip_branch", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
public int s2c_equip_branch
{
get { return _s2c_equip_branch; }
set { _s2c_equip_branch = value; }
}
private global::ProtoBuf.IExtension extensionObject;
global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
{ return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
}
//---------------------------------------------------------------------------------------
///
/// id----600----请求:获取技能强化所有信息----响应:SkillStrongInfoResponse
///
[global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"SkillStrongInfoRequest")]
public partial class SkillStrongInfoRequest : global::ProtoBuf.IExtensible
{
public SkillStrongInfoRequest() {}
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=@"SkillStrongInfoResponse")]
public partial class SkillStrongInfoResponse : global::ProtoBuf.IExtensible
{
public SkillStrongInfoResponse() {}
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 readonly global::System.Collections.Generic.List _s2c_baseInfo = new global::System.Collections.Generic.List();
///
/// 技能强化数据列表
///
[global::ProtoBuf.ProtoMember(3, Name=@"s2c_baseInfo", DataFormat = global::ProtoBuf.DataFormat.Default)]
public global::System.Collections.Generic.List s2c_baseInfo
{
get { return _s2c_baseInfo; }
}
private readonly global::System.Collections.Generic.List _s2c_branch = new global::System.Collections.Generic.List();
///
/// 基础技能对应携带分支
///
[global::ProtoBuf.ProtoMember(4, Name=@"s2c_branch", DataFormat = global::ProtoBuf.DataFormat.Default)]
public global::System.Collections.Generic.List s2c_branch
{
get { return _s2c_branch; }
}
private global::ProtoBuf.IExtension extensionObject;
global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
{ return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
}
//---------------------------------------------------------------------------------------
///
/// id----601----请求:学习强化阶段技能----响应:SkillStrongObtainResponse
///
[global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"SkillStrongObtainRequest")]
public partial class SkillStrongObtainRequest : global::ProtoBuf.IExtensible
{
public SkillStrongObtainRequest() {}
private int _s2c_skillid;
[global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_skillid", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
public int s2c_skillid
{
get { return _s2c_skillid; }
set { _s2c_skillid = 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=@"SkillStrongObtainResponse")]
public partial class SkillStrongObtainResponse : global::ProtoBuf.IExtensible
{
public SkillStrongObtainResponse() {}
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.SkillStrongBaseInfo _changeInfo = null;
///
/// 被改变的技能信息
///
[global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"changeInfo", DataFormat = global::ProtoBuf.DataFormat.Default)]
[global::System.ComponentModel.DefaultValue(null)]
public pomelo.area.SkillStrongBaseInfo changeInfo
{
get { return _changeInfo; }
set { _changeInfo = value; }
}
private global::ProtoBuf.IExtension extensionObject;
global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
{ return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
}
//---------------------------------------------------------------------------------------
///
/// id----602----请求:升级强化阶段技能----响应:SkillStrongUpgradeResponse
///
[global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"SkillStrongUpgradeRequest")]
public partial class SkillStrongUpgradeRequest : global::ProtoBuf.IExtensible
{
public SkillStrongUpgradeRequest() {}
private int _s2c_skillid;
[global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_skillid", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
public int s2c_skillid
{
get { return _s2c_skillid; }
set { _s2c_skillid = 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=@"SkillStrongUpgradeResponse")]
public partial class SkillStrongUpgradeResponse : global::ProtoBuf.IExtensible
{
public SkillStrongUpgradeResponse() {}
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.SkillStrongBaseInfo _changeInfo = null;
///
/// 被改变的技能信息
///
[global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"changeInfo", DataFormat = global::ProtoBuf.DataFormat.Default)]
[global::System.ComponentModel.DefaultValue(null)]
public pomelo.area.SkillStrongBaseInfo changeInfo
{
get { return _changeInfo; }
set { _changeInfo = value; }
}
private global::ProtoBuf.IExtension extensionObject;
global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
{ return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
}
//---------------------------------------------------------------------------------------
///
/// id----603----请求:携带改变强化阶段技能----响应:SkillStrongChangeResponse
///
[global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"SkillStrongChangeRequest")]
public partial class SkillStrongChangeRequest : global::ProtoBuf.IExtensible
{
public SkillStrongChangeRequest() {}
private int _s2c_skillid;
///
/// 基础id
///
[global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_skillid", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
public int s2c_skillid
{
get { return _s2c_skillid; }
set { _s2c_skillid = value; }
}
private int _s2c_branchtype;
///
/// 分支类型
///
[global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"s2c_branchtype", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
public int s2c_branchtype
{
get { return _s2c_branchtype; }
set { _s2c_branchtype = 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=@"SkillStrongChangeResponse")]
public partial class SkillStrongChangeResponse : global::ProtoBuf.IExtensible
{
public SkillStrongChangeResponse() {}
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 readonly global::System.Collections.Generic.List _s2c_branch = new global::System.Collections.Generic.List();
///
/// 基础技能对应携带分支
///
[global::ProtoBuf.ProtoMember(3, Name=@"s2c_branch", DataFormat = global::ProtoBuf.DataFormat.Default)]
public global::System.Collections.Generic.List s2c_branch
{
get { return _s2c_branch; }
}
private global::ProtoBuf.IExtension extensionObject;
global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
{ return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
}
//---------------------------------------------------------------------------------------
///
/// 一键携带 id----618----请求:一键携带----响应:SkillStrongOneKeyEquipResponse
///
[global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"SkillStrongOneKeyEquipRequest")]
public partial class SkillStrongOneKeyEquipRequest : global::ProtoBuf.IExtensible
{
public SkillStrongOneKeyEquipRequest() {}
private int _s2c_branchtype;
///
/// 分支类型1/2(左/右)
///
[global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_branchtype", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
public int s2c_branchtype
{
get { return _s2c_branchtype; }
set { _s2c_branchtype = 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=@"SkillStrongOneKeyEquipResponse")]
public partial class SkillStrongOneKeyEquipResponse : global::ProtoBuf.IExtensible
{
public SkillStrongOneKeyEquipResponse() {}
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 readonly global::System.Collections.Generic.List _s2c_branch = new global::System.Collections.Generic.List();
///
/// 基础技能对应携带分支
///
[global::ProtoBuf.ProtoMember(3, Name=@"s2c_branch", DataFormat = global::ProtoBuf.DataFormat.Default)]
public global::System.Collections.Generic.List s2c_branch
{
get { return _s2c_branch; }
}
private global::ProtoBuf.IExtension extensionObject;
global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
{ return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
}
}