123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 |
- //------------------------------------------------------------------------------
- // <auto-generated>
- // This code was generated by a tool.
- //
- // Changes to this file may cause incorrect behavior and will be lost if
- // the code is regenerated.
- // </auto-generated>
- //------------------------------------------------------------------------------
- // ***************************************************************************
- // * 作者= 曾振东
- // * 创建时间= 2020-07-13
- // * 用途= 修仙日记
- // ***************************************************************************/
- // Generated from: diaryHandler.proto
- namespace pomelo.area
- {
-
- //---------------------------------------------------------------------------------------
- /// <summary>
- /// 修仙日记信息对象
- /// </summary>
-
- [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"DiaryInfo")]
- public partial class DiaryInfo : global::ProtoBuf.IExtensible
- {
- public DiaryInfo() {}
-
-
- private int _npcId;
- /// <summary>
- /// npcid
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"npcId", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- public int npcId
- {
- get { return _npcId; }
- set { _npcId = value; }
- }
-
- private int _npcGoodFeelingVlaue = default(int);
- /// <summary>
- /// 好感度值
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"npcGoodFeelingVlaue", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(int))]
- public int npcGoodFeelingVlaue
- {
- get { return _npcGoodFeelingVlaue; }
- set { _npcGoodFeelingVlaue = value; }
- }
- private global::ProtoBuf.IExtension extensionObject;
- global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
- { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
- }
-
-
- //---------------------------------------------------------------------------------------
- /// <summary>
- /// 获取修仙日记 请求
- /// </summary>
-
- [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GetDiaryInfoRequest")]
- public partial class GetDiaryInfoRequest : global::ProtoBuf.IExtensible
- {
- public GetDiaryInfoRequest() {}
-
- private global::ProtoBuf.IExtension extensionObject;
- global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
- { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
- }
-
-
- //---------------------------------------------------------------------------------------
- /// <summary>
- /// 获取修仙日记 返回
- /// </summary>
-
- [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GetDiaryInfoResponse")]
- public partial class GetDiaryInfoResponse : global::ProtoBuf.IExtensible
- {
- public GetDiaryInfoResponse() {}
-
-
- 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<pomelo.area.DiaryInfo> _s2c_infos = new global::System.Collections.Generic.List<pomelo.area.DiaryInfo>();
- /// <summary>
- /// 日记信息
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(3, Name=@"s2c_infos", DataFormat = global::ProtoBuf.DataFormat.Default)]
- public global::System.Collections.Generic.List<pomelo.area.DiaryInfo> s2c_infos
- {
- get { return _s2c_infos; }
- }
-
- private global::ProtoBuf.IExtension extensionObject;
- global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
- { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
- }
-
-
- }
-
|