//------------------------------------------------------------------------------ // // This code was generated by a tool. // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // //------------------------------------------------------------------------------ // *************************************************************************** // * 作者= 曾振东 // * 创建时间= 2020-07-13 // * 用途= 修仙日记 // ***************************************************************************/ // Generated from: diaryHandler.proto namespace pomelo.area { //--------------------------------------------------------------------------------------- /// /// 修仙日记信息对象 /// [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"DiaryInfo")] public partial class DiaryInfo : global::ProtoBuf.IExtensible { public DiaryInfo() {} private int _npcId; /// /// npcid /// [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); /// /// 好感度值 /// [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); } } //--------------------------------------------------------------------------------------- /// /// 获取修仙日记 请求 /// [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); } } //--------------------------------------------------------------------------------------- /// /// 获取修仙日记 返回 /// [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 _s2c_infos = new global::System.Collections.Generic.List(); /// /// 日记信息 /// [global::ProtoBuf.ProtoMember(3, Name=@"s2c_infos", DataFormat = global::ProtoBuf.DataFormat.Default)] public global::System.Collections.Generic.List 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); } } }