//------------------------------------------------------------------------------
//
// 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: fashionHandler.proto
// Note: requires additional types generated from: common.proto
namespace pomelo.area
{
//---------------------------------------------------------------------------------------
///
/// 获取已获得的时装列表
///
[global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GetFashionsRequest")]
public partial class GetFashionsRequest : global::ProtoBuf.IExtensible
{
public GetFashionsRequest() {}
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=@"GetFashionsResponse")]
public partial class GetFashionsResponse : global::ProtoBuf.IExtensible
{
public GetFashionsResponse() {}
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 _code2 = new global::System.Collections.Generic.List();
///
/// 衣服
///
[global::ProtoBuf.ProtoMember(3, Name=@"code2", DataFormat = global::ProtoBuf.DataFormat.Default)]
public global::System.Collections.Generic.List code2
{
get { return _code2; }
}
private readonly global::System.Collections.Generic.List _flagcode2 = new global::System.Collections.Generic.List();
///
/// 缓存的红点衣服
///
[global::ProtoBuf.ProtoMember(4, Name=@"flagcode2", DataFormat = global::ProtoBuf.DataFormat.Default)]
public global::System.Collections.Generic.List flagcode2
{
get { return _flagcode2; }
}
private string _equiped_code2 = "";
///
/// 装备中的衣服code
///
[global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"equiped_code2", DataFormat = global::ProtoBuf.DataFormat.Default)]
[global::System.ComponentModel.DefaultValue("")]
public string equiped_code2
{
get { return _equiped_code2; }
set { _equiped_code2 = 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=@"DeleteFashionFlagRequest")]
public partial class DeleteFashionFlagRequest : global::ProtoBuf.IExtensible
{
public DeleteFashionFlagRequest() {}
private string _code;
[global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"code", DataFormat = global::ProtoBuf.DataFormat.Default)]
public string code
{
get { return _code; }
set { _code = 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=@"DeleteFashionFlagResponse")]
public partial class DeleteFashionFlagResponse : global::ProtoBuf.IExtensible
{
public DeleteFashionFlagResponse() {}
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=@"EquipFashionRequest")]
public partial class EquipFashionRequest : global::ProtoBuf.IExtensible
{
public EquipFashionRequest() {}
private string _code;
///
/// 要穿戴或更换的时装code
///
[global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"code", DataFormat = global::ProtoBuf.DataFormat.Default)]
public string code
{
get { return _code; }
set { _code = value; }
}
private bool _ison;
///
/// 是否穿上
///
[global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"ison", DataFormat = global::ProtoBuf.DataFormat.Default)]
public bool ison
{
get { return _ison; }
set { _ison = 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=@"EquipFashionResponse")]
public partial class EquipFashionResponse : global::ProtoBuf.IExtensible
{
public EquipFashionResponse() {}
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 string _equiped_code2 = "";
///
/// 装备中的衣服
///
[global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"equiped_code2", DataFormat = global::ProtoBuf.DataFormat.Default)]
[global::System.ComponentModel.DefaultValue("")]
public string equiped_code2
{
get { return _equiped_code2; }
set { _equiped_code2 = 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=@"DyeFashionRequest")]
public partial class DyeFashionRequest : global::ProtoBuf.IExtensible
{
public DyeFashionRequest() {}
private string _code;
///
/// 要染色的时装code
///
[global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"code", DataFormat = global::ProtoBuf.DataFormat.Default)]
public string code
{
get { return _code; }
set { _code = value; }
}
private int _dye_type;
///
/// -1:随机染色 0:固定染色A 1:固定染色B 2:固定染色C ...以此类推
///
[global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"dye_type", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
public int dye_type
{
get { return _dye_type; }
set { _dye_type = 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=@"DyeFashionResponse")]
public partial class DyeFashionResponse : global::ProtoBuf.IExtensible
{
public DyeFashionResponse() {}
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 = "";
///
/// 存放成功后的新时装code
///
[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=@"FashionGetPush")]
public partial class FashionGetPush : global::ProtoBuf.IExtensible
{
public FashionGetPush() {}
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 _code;
///
/// 时装代码
///
[global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"code", DataFormat = global::ProtoBuf.DataFormat.Default)]
public string code
{
get { return _code; }
set { _code = value; }
}
private global::ProtoBuf.IExtension extensionObject;
global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
{ return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
}
}