//------------------------------------------------------------------------------
//
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
//
//------------------------------------------------------------------------------
// ***************************************************************************
// 作者= 卢松洁
// 创建时间= 2015-08-27
// 用途= 任务处理器
// ***************************************************************************
// Generated from: taskHandler.proto
// Note: requires additional types generated from: task.proto
// Note: requires additional types generated from: common.proto
namespace pomelo.area
{
//---------------------------------------------------------------------------------------
///
/// 接受任务请求
///
[global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"AcceptTaskRequest")]
public partial class AcceptTaskRequest : global::ProtoBuf.IExtensible
{
public AcceptTaskRequest() {}
private int _c2s_templateId;
///
/// 任务模版id
///
[global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"c2s_templateId", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
public int c2s_templateId
{
get { return _c2s_templateId; }
set { _c2s_templateId = value; }
}
private int _c2s_kind;
[global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"c2s_kind", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
public int c2s_kind
{
get { return _c2s_kind; }
set { _c2s_kind = value; }
}
private string _c2s_npcId;
///
/// 不需要npc的时候发0
///
[global::ProtoBuf.ProtoMember(3, IsRequired = true, Name=@"c2s_npcId", DataFormat = global::ProtoBuf.DataFormat.Default)]
public string c2s_npcId
{
get { return _c2s_npcId; }
set { _c2s_npcId = 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=@"AcceptTaskResponse")]
public partial class AcceptTaskResponse : global::ProtoBuf.IExtensible
{
public AcceptTaskResponse() {}
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=@"QuickFinishRequest")]
public partial class QuickFinishRequest : global::ProtoBuf.IExtensible
{
public QuickFinishRequest() {}
private int _c2s_templateId;
[global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"c2s_templateId", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
public int c2s_templateId
{
get { return _c2s_templateId; }
set { _c2s_templateId = value; }
}
private int _c2s_kind;
[global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"c2s_kind", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
public int c2s_kind
{
get { return _c2s_kind; }
set { _c2s_kind = value; }
}
private string _c2s_npcId;
[global::ProtoBuf.ProtoMember(3, IsRequired = true, Name=@"c2s_npcId", DataFormat = global::ProtoBuf.DataFormat.Default)]
public string c2s_npcId
{
get { return _c2s_npcId; }
set { _c2s_npcId = 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=@"QuickFinishResponse")]
public partial class QuickFinishResponse : global::ProtoBuf.IExtensible
{
public QuickFinishResponse() {}
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=@"DiscardTaskRequest")]
public partial class DiscardTaskRequest : global::ProtoBuf.IExtensible
{
public DiscardTaskRequest() {}
private int _c2s_templateId;
[global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"c2s_templateId", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
public int c2s_templateId
{
get { return _c2s_templateId; }
set { _c2s_templateId = value; }
}
private int _c2s_kind;
[global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"c2s_kind", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
public int c2s_kind
{
get { return _c2s_kind; }
set { _c2s_kind = 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=@"DiscardTaskResponse")]
public partial class DiscardTaskResponse : global::ProtoBuf.IExtensible
{
public DiscardTaskResponse() {}
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=@"SubmitTaskRequest")]
public partial class SubmitTaskRequest : global::ProtoBuf.IExtensible
{
public SubmitTaskRequest() {}
private int _c2s_templateId;
[global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"c2s_templateId", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
public int c2s_templateId
{
get { return _c2s_templateId; }
set { _c2s_templateId = value; }
}
private int _c2s_kind;
[global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"c2s_kind", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
public int c2s_kind
{
get { return _c2s_kind; }
set { _c2s_kind = value; }
}
private int _c2s_double;
///
/// 是否多倍提交任务
///
[global::ProtoBuf.ProtoMember(3, IsRequired = true, Name=@"c2s_double", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
public int c2s_double
{
get { return _c2s_double; }
set { _c2s_double = value; }
}
private string _c2s_npcId;
[global::ProtoBuf.ProtoMember(4, IsRequired = true, Name=@"c2s_npcId", DataFormat = global::ProtoBuf.DataFormat.Default)]
public string c2s_npcId
{
get { return _c2s_npcId; }
set { _c2s_npcId = 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=@"SubmitTaskResponse")]
public partial class SubmitTaskResponse : global::ProtoBuf.IExtensible
{
public SubmitTaskResponse() {}
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=@"UpdateTaskStatusRequest")]
public partial class UpdateTaskStatusRequest : global::ProtoBuf.IExtensible
{
public UpdateTaskStatusRequest() {}
private int _c2s_templateId;
[global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"c2s_templateId", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
public int c2s_templateId
{
get { return _c2s_templateId; }
set { _c2s_templateId = value; }
}
private int _c2s_kind;
[global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"c2s_kind", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
public int c2s_kind
{
get { return _c2s_kind; }
set { _c2s_kind = 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=@"UpdateTaskStatusResponse")]
public partial class UpdateTaskStatusResponse : global::ProtoBuf.IExtensible
{
public UpdateTaskStatusResponse() {}
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=@"RefreshSoulTaskRequest")]
public partial class RefreshSoulTaskRequest : global::ProtoBuf.IExtensible
{
public RefreshSoulTaskRequest() {}
private int _c2s_taskId;
[global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"c2s_taskId", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
public int c2s_taskId
{
get { return _c2s_taskId; }
set { _c2s_taskId = 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=@"RefreshSoulTaskResponse")]
public partial class RefreshSoulTaskResponse : global::ProtoBuf.IExtensible
{
public RefreshSoulTaskResponse() {}
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=@"GetDailySoulFinNumRequest")]
public partial class GetDailySoulFinNumRequest : global::ProtoBuf.IExtensible
{
public GetDailySoulFinNumRequest() {}
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=@"GetDailySoulFinNumResponse")]
public partial class GetDailySoulFinNumResponse : global::ProtoBuf.IExtensible
{
public GetDailySoulFinNumResponse() {}
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 int _s2c_num;
[global::ProtoBuf.ProtoMember(3, IsRequired = true, Name=@"s2c_num", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
public int s2c_num
{
get { return _s2c_num; }
set { _s2c_num = 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=@"TaskFuncDeskRequest")]
public partial class TaskFuncDeskRequest : global::ProtoBuf.IExtensible
{
public TaskFuncDeskRequest() {}
private string _c2s_ncpId;
[global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"c2s_ncpId", DataFormat = global::ProtoBuf.DataFormat.Default)]
public string c2s_ncpId
{
get { return _c2s_ncpId; }
set { _c2s_ncpId = 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=@"TaskFuncDeskResponse")]
public partial class TaskFuncDeskResponse : global::ProtoBuf.IExtensible
{
public TaskFuncDeskResponse() {}
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=@"AcceptLoopTaskRequest")]
public partial class AcceptLoopTaskRequest : global::ProtoBuf.IExtensible
{
public AcceptLoopTaskRequest() {}
private string _c2s_npcId;
[global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"c2s_npcId", DataFormat = global::ProtoBuf.DataFormat.Default)]
public string c2s_npcId
{
get { return _c2s_npcId; }
set { _c2s_npcId = 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=@"AcceptLoopTaskResponse")]
public partial class AcceptLoopTaskResponse : global::ProtoBuf.IExtensible
{
public AcceptLoopTaskResponse() {}
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=@"AcceptDailyTaskRequest")]
public partial class AcceptDailyTaskRequest : global::ProtoBuf.IExtensible
{
public AcceptDailyTaskRequest() {}
private string _c2s_npcId;
[global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"c2s_npcId", DataFormat = global::ProtoBuf.DataFormat.Default)]
public string c2s_npcId
{
get { return _c2s_npcId; }
set { _c2s_npcId = 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=@"AcceptDailyTaskResponse")]
public partial class AcceptDailyTaskResponse : global::ProtoBuf.IExtensible
{
public AcceptDailyTaskResponse() {}
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=@"CjPlayEndNotify")]
public partial class CjPlayEndNotify : global::ProtoBuf.IExtensible
{
public CjPlayEndNotify() {}
private string _s2c_msg = "";
[global::ProtoBuf.ProtoMember(1, 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=@"ReachTreasurePointRequest")]
public partial class ReachTreasurePointRequest : global::ProtoBuf.IExtensible
{
public ReachTreasurePointRequest() {}
private int _point;
///
/// 路点
///
[global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"point", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
public int point
{
get { return _point; }
set { _point = 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=@"ReachTreasurePointResponse")]
public partial class ReachTreasurePointResponse : global::ProtoBuf.IExtensible
{
public ReachTreasurePointResponse() {}
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); }
}
//---------------------------------------------------------------------------------------
///
/// npc对话奖励三选一请求 id:619
///
[global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"TaskSelectRewardRequest")]
public partial class TaskSelectRewardRequest : global::ProtoBuf.IExtensible
{
public TaskSelectRewardRequest() {}
private int _c2s_id;
///
/// npcId
///
[global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"c2s_id", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
public int c2s_id
{
get { return _c2s_id; }
set { _c2s_id = value; }
}
private int _c2s_index;
///
/// 选取的奖励id
///
[global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"c2s_index", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
public int c2s_index
{
get { return _c2s_index; }
set { _c2s_index = 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=@"TaskSelectRewardResponse")]
public partial class TaskSelectRewardResponse : global::ProtoBuf.IExtensible
{
public TaskSelectRewardResponse() {}
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); }
}
//---------------------------------------------------------------------------------------
///
/// 任务变身恢复请求 id:632
///
[global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"TaskTransRecoveryRequest")]
public partial class TaskTransRecoveryRequest : global::ProtoBuf.IExtensible
{
public TaskTransRecoveryRequest() {}
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=@"TaskTransRecoveryResponse")]
public partial class TaskTransRecoveryResponse : global::ProtoBuf.IExtensible
{
public TaskTransRecoveryResponse() {}
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); }
}
//---------------------------------------------------------------------------------------
///
/// 引导任务完成---id---634
///
[global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GuideTaskFinishRequest")]
public partial class GuideTaskFinishRequest : global::ProtoBuf.IExtensible
{
public GuideTaskFinishRequest() {}
private int _c2s_id;
[global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"c2s_id", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
public int c2s_id
{
get { return _c2s_id; }
set { _c2s_id = 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=@"GuideTaskFinishResponse")]
public partial class GuideTaskFinishResponse : global::ProtoBuf.IExtensible
{
public GuideTaskFinishResponse() {}
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); }
}
//---------------------------------------------------------------------------------------
///
/// NPC交谈---id---635
///
[global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"TaskNpcTalkRequest")]
public partial class TaskNpcTalkRequest : global::ProtoBuf.IExtensible
{
public TaskNpcTalkRequest() {}
private int _npc_id;
[global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"npc_id", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
public int npc_id
{
get { return _npc_id; }
set { _npc_id = 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=@"TaskNpcTalkResponse")]
public partial class TaskNpcTalkResponse : global::ProtoBuf.IExtensible
{
public TaskNpcTalkResponse() {}
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); }
}
//---------------------------------------------------------------------------------------
///
/// 任务更新push
///
[global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"TaskUpdatePush")]
public partial class TaskUpdatePush : global::ProtoBuf.IExtensible
{
public TaskUpdatePush() {}
private pomelo.task.Tasks _s2c_data = null;
[global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_data", DataFormat = global::ProtoBuf.DataFormat.Default)]
[global::System.ComponentModel.DefaultValue(null)]
public pomelo.task.Tasks s2c_data
{
get { return _s2c_data; }
set { _s2c_data = 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=@"TaskAutoPush")]
public partial class TaskAutoPush : global::ProtoBuf.IExtensible
{
public TaskAutoPush() {}
private int _auto;
///
/// 0:手动, 1:自动
///
[global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"auto", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
public int auto
{
get { return _auto; }
set { _auto = 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=@"TreasureScenePointPush")]
public partial class TreasureScenePointPush : global::ProtoBuf.IExtensible
{
public TreasureScenePointPush() {}
private int _sceneId;
///
/// 场景ID
///
[global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"sceneId", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
public int sceneId
{
get { return _sceneId; }
set { _sceneId = value; }
}
private int _point;
///
/// 路点
///
[global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"point", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
public int point
{
get { return _point; }
set { _point = value; }
}
private int _taskId;
///
/// 任务ID
///
[global::ProtoBuf.ProtoMember(3, IsRequired = true, Name=@"taskId", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
public int taskId
{
get { return _taskId; }
set { _taskId = 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=@"LoopResultPush")]
public partial class LoopResultPush : global::ProtoBuf.IExtensible
{
public LoopResultPush() {}
private int _times;
///
/// 当日完成次数
///
[global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"times", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
public int times
{
get { return _times; }
set { _times = value; }
}
private int _exp;
///
/// 本轮经验收益
///
[global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"exp", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
public int exp
{
get { return _exp; }
set { _exp = value; }
}
private int _gold;
///
/// 本轮银两收益
///
[global::ProtoBuf.ProtoMember(3, IsRequired = true, Name=@"gold", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
public int gold
{
get { return _gold; }
set { _gold = value; }
}
private int _upexp;
///
/// 本轮修为收益
///
[global::ProtoBuf.ProtoMember(4, IsRequired = true, Name=@"upexp", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
public int upexp
{
get { return _upexp; }
set { _upexp = value; }
}
private int _xianyuan;
///
/// 本轮仙缘值收益
///
[global::ProtoBuf.ProtoMember(5, IsRequired = true, Name=@"xianyuan", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
public int xianyuan
{
get { return _xianyuan; }
set { _xianyuan = value; }
}
private int _chest_count;
///
/// 本轮获得宝箱数量
///
[global::ProtoBuf.ProtoMember(6, IsRequired = true, Name=@"chest_count", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
public int chest_count
{
get { return _chest_count; }
set { _chest_count = value; }
}
private global::ProtoBuf.IExtension extensionObject;
global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
{ return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
}
//---------------------------------------------------------------------------------------
///
/// 引导任务未完成id组 id 1307
///
[global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GuideTaskPush")]
public partial class GuideTaskPush : global::ProtoBuf.IExtensible
{
public GuideTaskPush() {}
private readonly global::System.Collections.Generic.List _notDoneIds = new global::System.Collections.Generic.List();
///
/// 还没做过的引导任务id组
///
[global::ProtoBuf.ProtoMember(1, Name=@"notDoneIds", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
public global::System.Collections.Generic.List notDoneIds
{
get { return _notDoneIds; }
}
private global::ProtoBuf.IExtension extensionObject;
global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
{ return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
}
}