123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706 |
- //------------------------------------------------------------------------------
- // <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-05-12
- // * 用途= npc好感度处理器
- // ***************************************************************************/
- // Generated from: npcGoodFeelingHandler.proto
- // Note: requires additional types generated from: common.proto
- namespace pomelo.area
- {
-
- //---------------------------------------------------------------------------------------
- /// <summary>
- /// npc好感度模型
- /// </summary>
-
- [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"NpcGoodFeelingModel")]
- public partial class NpcGoodFeelingModel : global::ProtoBuf.IExtensible
- {
- public NpcGoodFeelingModel() {}
-
-
- 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;
- /// <summary>
- /// 好感度值
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"NpcGoodFeelingVlaue", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- public int NpcGoodFeelingVlaue
- {
- get { return _NpcGoodFeelingVlaue; }
- set { _NpcGoodFeelingVlaue = value; }
- }
-
- private int _getGiftNumToday;
- /// <summary>
- /// 今日获得第几次礼物 例: 0 ,今日已获得0次,5即是 今日已获得五次
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(3, IsRequired = true, Name=@"getGiftNumToday", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- public int getGiftNumToday
- {
- get { return _getGiftNumToday; }
- set { _getGiftNumToday = value; }
- }
-
- private readonly global::System.Collections.Generic.List<string> _very_like = new global::System.Collections.Generic.List<string>();
- /// <summary>
- /// 喜好
- /// </summary>
-
- /// <summary>
- /// 非常喜欢的道具
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(11, Name=@"very_like", DataFormat = global::ProtoBuf.DataFormat.Default)]
- public global::System.Collections.Generic.List<string> very_like
- {
- get { return _very_like; }
- }
-
-
- private readonly global::System.Collections.Generic.List<string> _like = new global::System.Collections.Generic.List<string>();
- /// <summary>
- /// 喜欢的道具
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(12, Name=@"like", DataFormat = global::ProtoBuf.DataFormat.Default)]
- public global::System.Collections.Generic.List<string> like
- {
- get { return _like; }
- }
-
-
- private readonly global::System.Collections.Generic.List<string> _hate = new global::System.Collections.Generic.List<string>();
- /// <summary>
- /// 讨厌的道具
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(13, Name=@"hate", DataFormat = global::ProtoBuf.DataFormat.Default)]
- public global::System.Collections.Generic.List<string> hate
- {
- get { return _hate; }
- }
-
- 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=@"GiftItem")]
- public partial class GiftItem : global::ProtoBuf.IExtensible
- {
- public GiftItem() {}
-
-
- private string _giftCode;
- /// <summary>
- /// 礼物code
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"giftCode", DataFormat = global::ProtoBuf.DataFormat.Default)]
- public string giftCode
- {
- get { return _giftCode; }
- set { _giftCode = value; }
- }
-
- private int _giftNum;
- /// <summary>
- /// 礼物的数量
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"giftNum", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- public int giftNum
- {
- get { return _giftNum; }
- set { _giftNum = 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=@"ReturnGiftItem")]
- public partial class ReturnGiftItem : global::ProtoBuf.IExtensible
- {
- public ReturnGiftItem() {}
-
-
- private string _giftCode = "";
- /// <summary>
- /// 礼物code
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"giftCode", DataFormat = global::ProtoBuf.DataFormat.Default)]
- [global::System.ComponentModel.DefaultValue("")]
- public string giftCode
- {
- get { return _giftCode; }
- set { _giftCode = value; }
- }
-
- private int _giftNum = default(int);
- /// <summary>
- /// 礼物的数量
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"giftNum", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(int))]
- public int giftNum
- {
- get { return _giftNum; }
- set { _giftNum = value; }
- }
- private global::ProtoBuf.IExtension extensionObject;
- global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
- { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
- }
-
-
- //---------------------------------------------------------------------------------------
- /// <summary>
- /// 获取所有npc好感度
- /// </summary>
-
- [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GetAllNpcGoodFeelingRequest")]
- public partial class GetAllNpcGoodFeelingRequest : global::ProtoBuf.IExtensible
- {
- public GetAllNpcGoodFeelingRequest() {}
-
- 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=@"GetAllNpcGoodFeelingResponse")]
- public partial class GetAllNpcGoodFeelingResponse : global::ProtoBuf.IExtensible
- {
- public GetAllNpcGoodFeelingResponse() {}
-
-
- 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.NpcGoodFeelingModel> _models = new global::System.Collections.Generic.List<pomelo.area.NpcGoodFeelingModel>();
- /// <summary>
- /// npc好感度
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(3, Name=@"models", DataFormat = global::ProtoBuf.DataFormat.Default)]
- public global::System.Collections.Generic.List<pomelo.area.NpcGoodFeelingModel> models
- {
- get { return _models; }
- }
-
-
- private int _getGiftNumTodayAllNpc;
- /// <summary>
- /// 今日对所有npc的送礼剩余次数
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(4, IsRequired = true, Name=@"getGiftNumTodayAllNpc", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- public int getGiftNumTodayAllNpc
- {
- get { return _getGiftNumTodayAllNpc; }
- set { _getGiftNumTodayAllNpc = value; }
- }
- private global::ProtoBuf.IExtension extensionObject;
- global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
- { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
- }
-
-
- //---------------------------------------------------------------------------------------
- /// <summary>
- /// 获取某个npc好感度
- /// </summary>
-
- [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GetNpcGoodFeelingRequest")]
- public partial class GetNpcGoodFeelingRequest : global::ProtoBuf.IExtensible
- {
- public GetNpcGoodFeelingRequest() {}
-
-
- private int _npcId;
- [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"npcId", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- public int npcId
- {
- get { return _npcId; }
- set { _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=@"GetNpcGoodFeelingResponse")]
- public partial class GetNpcGoodFeelingResponse : global::ProtoBuf.IExtensible
- {
- public GetNpcGoodFeelingResponse() {}
-
-
- 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.NpcGoodFeelingModel _model;
- /// <summary>
- /// npc好感度
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(3, IsRequired = true, Name=@"model", DataFormat = global::ProtoBuf.DataFormat.Default)]
- public pomelo.area.NpcGoodFeelingModel model
- {
- get { return _model; }
- set { _model = value; }
- }
-
- private int _getGiftNumTodayAllNpc;
- /// <summary>
- /// 今日对所有npc的送礼剩余次数
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(4, IsRequired = true, Name=@"getGiftNumTodayAllNpc", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- public int getGiftNumTodayAllNpc
- {
- get { return _getGiftNumTodayAllNpc; }
- set { _getGiftNumTodayAllNpc = value; }
- }
- private global::ProtoBuf.IExtension extensionObject;
- global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
- { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
- }
-
-
- //---------------------------------------------------------------------------------------
- /// <summary>
- /// 对某个npc进行送礼
- /// </summary>
-
- [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GiftGivingRequest")]
- public partial class GiftGivingRequest : global::ProtoBuf.IExtensible
- {
- public GiftGivingRequest() {}
-
-
- 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 pomelo.area.GiftItem _gift;
- /// <summary>
- /// 礼物
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"gift", DataFormat = global::ProtoBuf.DataFormat.Default)]
- public pomelo.area.GiftItem gift
- {
- get { return _gift; }
- set { _gift = 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=@"GiftGivingResponse")]
- public partial class GiftGivingResponse : global::ProtoBuf.IExtensible
- {
- public GiftGivingResponse() {}
-
-
- 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 _haveReturnGift;
- /// <summary>
- /// npc对待礼品的态度;1:一般, 2:喜欢, 3:非常喜欢, 4:讨厌
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(3, IsRequired = true, Name=@"haveReturnGift", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- public int haveReturnGift
- {
- get { return _haveReturnGift; }
- set { _haveReturnGift = value; }
- }
-
- private readonly global::System.Collections.Generic.List<pomelo.area.ReturnGiftItem> _returnGift = new global::System.Collections.Generic.List<pomelo.area.ReturnGiftItem>();
- /// <summary>
- /// 回赠的礼品
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(4, Name=@"returnGift", DataFormat = global::ProtoBuf.DataFormat.Default)]
- public global::System.Collections.Generic.List<pomelo.area.ReturnGiftItem> returnGift
- {
- get { return _returnGift; }
- }
-
-
- private int _curLv = default(int);
- /// <summary>
- /// 当前好感度阶数
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"curLv", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(int))]
- public int curLv
- {
- get { return _curLv; }
- set { _curLv = value; }
- }
- private global::ProtoBuf.IExtension extensionObject;
- global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
- { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
- }
-
-
- //---------------------------------------------------------------------------------------
- /// <summary>
- /// 好感度npc对话
- /// </summary>
-
- [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"TalkRequest")]
- public partial class TalkRequest : global::ProtoBuf.IExtensible
- {
- public TalkRequest() {}
-
-
- 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 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=@"TalkResponse")]
- public partial class TalkResponse : global::ProtoBuf.IExtensible
- {
- public TalkResponse() {}
-
-
- 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 bool _isFirst = default(bool);
- /// <summary>
- /// 是否已经第一次对话
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"isFirst", DataFormat = global::ProtoBuf.DataFormat.Default)]
- [global::System.ComponentModel.DefaultValue(default(bool))]
- public bool isFirst
- {
- get { return _isFirst; }
- set { _isFirst = value; }
- }
-
- private int _option_count = default(int);
- /// <summary>
- /// 选项数量(>0表示弹出选择面板)
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"option_count", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(int))]
- public int option_count
- {
- get { return _option_count; }
- set { _option_count = value; }
- }
-
- private bool _isFirstByDay = default(bool);
- /// <summary>
- /// 是否已首次对话(每日)
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"isFirstByDay", DataFormat = global::ProtoBuf.DataFormat.Default)]
- [global::System.ComponentModel.DefaultValue(default(bool))]
- public bool isFirstByDay
- {
- get { return _isFirstByDay; }
- set { _isFirstByDay = 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=@"TalkEndSelRewardRequest")]
- public partial class TalkEndSelRewardRequest : global::ProtoBuf.IExtensible
- {
- public TalkEndSelRewardRequest() {}
-
-
- private int _index;
- /// <summary>
- /// 选项索引(从0开始)
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"index", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- public int index
- {
- get { return _index; }
- set { _index = value; }
- }
-
- private int _npcId;
- [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"npcId", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- public int npcId
- {
- get { return _npcId; }
- set { _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=@"TalkEndSelRewardResponse")]
- public partial class TalkEndSelRewardResponse : global::ProtoBuf.IExtensible
- {
- public TalkEndSelRewardResponse() {}
-
-
- 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); }
- }
-
-
- //---------------------------------------------------------------------------------------
- /// <summary>
- /// 所有npc好感度推送
- /// </summary>
-
- [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"AllNpcGoodFeelingGetPush")]
- public partial class AllNpcGoodFeelingGetPush : global::ProtoBuf.IExtensible
- {
- public AllNpcGoodFeelingGetPush() {}
-
-
- 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.NpcGoodFeelingModel> _models = new global::System.Collections.Generic.List<pomelo.area.NpcGoodFeelingModel>();
- /// <summary>
- /// npc好感度
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(3, Name=@"models", DataFormat = global::ProtoBuf.DataFormat.Default)]
- public global::System.Collections.Generic.List<pomelo.area.NpcGoodFeelingModel> models
- {
- get { return _models; }
- }
-
-
- private int _getGiftNumTodayAllNpc;
- /// <summary>
- /// 今日对所有npc的送礼剩余次数
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(4, IsRequired = true, Name=@"getGiftNumTodayAllNpc", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- public int getGiftNumTodayAllNpc
- {
- get { return _getGiftNumTodayAllNpc; }
- set { _getGiftNumTodayAllNpc = value; }
- }
- private global::ProtoBuf.IExtension extensionObject;
- global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
- { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
- }
-
-
- //---------------------------------------------------------------------------------------
- /// <summary>
- /// 已经首次对话npc
- /// </summary>
-
- [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"FirstTalkNpcPush")]
- public partial class FirstTalkNpcPush : global::ProtoBuf.IExtensible
- {
- public FirstTalkNpcPush() {}
-
-
- private readonly global::System.Collections.Generic.List<int> _npcIds = new global::System.Collections.Generic.List<int>();
- /// <summary>
- /// npcIds
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(1, Name=@"npcIds", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- public global::System.Collections.Generic.List<int> npcIds
- {
- get { return _npcIds; }
- }
-
-
- private readonly global::System.Collections.Generic.List<int> _npcIdsByDay = new global::System.Collections.Generic.List<int>();
- /// <summary>
- /// 已经首次对话npc(每日)
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(2, Name=@"npcIdsByDay", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- public global::System.Collections.Generic.List<int> npcIdsByDay
- {
- get { return _npcIdsByDay; }
- }
-
- private global::ProtoBuf.IExtension extensionObject;
- global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
- { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
- }
-
-
- }
-
|