_friendHandler.cs 97 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526
  1. //------------------------------------------------------------------------------
  2. // <auto-generated>
  3. // This code was generated by a tool.
  4. //
  5. // Changes to this file may cause incorrect behavior and will be lost if
  6. // the code is regenerated.
  7. // </auto-generated>
  8. //------------------------------------------------------------------------------
  9. // ***************************************************************************
  10. // * 作者: 曾振东
  11. // * 创建时间: 2019-07-29
  12. // * 用途: 好友
  13. // ***************************************************************************/
  14. // Generated from: friendHandler.proto
  15. // Note: requires additional types generated from: common.proto
  16. // Note: requires additional types generated from: chatHandler.proto
  17. // Note: requires additional types generated from: item.proto
  18. namespace pomelo.area
  19. {
  20. //---------------------------------------------------------------------------------------
  21. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"Position")]
  22. public partial class Position : global::ProtoBuf.IExtensible
  23. {
  24. public Position() {}
  25. private int _targetX = default(int);
  26. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"targetX", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  27. [global::System.ComponentModel.DefaultValue(default(int))]
  28. public int targetX
  29. {
  30. get { return _targetX; }
  31. set { _targetX = value; }
  32. }
  33. private int _targetY = default(int);
  34. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"targetY", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  35. [global::System.ComponentModel.DefaultValue(default(int))]
  36. public int targetY
  37. {
  38. get { return _targetY; }
  39. set { _targetY = value; }
  40. }
  41. private string _areaName = "";
  42. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"areaName", DataFormat = global::ProtoBuf.DataFormat.Default)]
  43. [global::System.ComponentModel.DefaultValue("")]
  44. public string areaName
  45. {
  46. get { return _areaName; }
  47. set { _areaName = value; }
  48. }
  49. private int _areaId = default(int);
  50. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"areaId", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  51. [global::System.ComponentModel.DefaultValue(default(int))]
  52. public int areaId
  53. {
  54. get { return _areaId; }
  55. set { _areaId = value; }
  56. }
  57. private global::ProtoBuf.IExtension extensionObject;
  58. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  59. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  60. }
  61. //---------------------------------------------------------------------------------------
  62. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"PlayerInfo")]
  63. public partial class PlayerInfo : global::ProtoBuf.IExtensible
  64. {
  65. public PlayerInfo() {}
  66. private string _id = "";
  67. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"id", DataFormat = global::ProtoBuf.DataFormat.Default)]
  68. [global::System.ComponentModel.DefaultValue("")]
  69. public string id
  70. {
  71. get { return _id; }
  72. set { _id = value; }
  73. }
  74. private int _pro = default(int);
  75. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"pro", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  76. [global::System.ComponentModel.DefaultValue(default(int))]
  77. public int pro
  78. {
  79. get { return _pro; }
  80. set { _pro = value; }
  81. }
  82. private string _guildId = "";
  83. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"guildId", DataFormat = global::ProtoBuf.DataFormat.Default)]
  84. [global::System.ComponentModel.DefaultValue("")]
  85. public string guildId
  86. {
  87. get { return _guildId; }
  88. set { _guildId = value; }
  89. }
  90. private string _guildName = "";
  91. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"guildName", DataFormat = global::ProtoBuf.DataFormat.Default)]
  92. [global::System.ComponentModel.DefaultValue("")]
  93. public string guildName
  94. {
  95. get { return _guildName; }
  96. set { _guildName = value; }
  97. }
  98. private string _name = "";
  99. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"name", DataFormat = global::ProtoBuf.DataFormat.Default)]
  100. [global::System.ComponentModel.DefaultValue("")]
  101. public string name
  102. {
  103. get { return _name; }
  104. set { _name = value; }
  105. }
  106. private int _level = default(int);
  107. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"level", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  108. [global::System.ComponentModel.DefaultValue(default(int))]
  109. public int level
  110. {
  111. get { return _level; }
  112. set { _level = value; }
  113. }
  114. private int _stageLevel = default(int);
  115. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"stageLevel", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  116. [global::System.ComponentModel.DefaultValue(default(int))]
  117. public int stageLevel
  118. {
  119. get { return _stageLevel; }
  120. set { _stageLevel = value; }
  121. }
  122. private int _vip = default(int);
  123. [global::ProtoBuf.ProtoMember(8, IsRequired = false, Name=@"vip", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  124. [global::System.ComponentModel.DefaultValue(default(int))]
  125. public int vip
  126. {
  127. get { return _vip; }
  128. set { _vip = value; }
  129. }
  130. private int _friendLv = default(int);
  131. [global::ProtoBuf.ProtoMember(9, IsRequired = false, Name=@"friendLv", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  132. [global::System.ComponentModel.DefaultValue(default(int))]
  133. public int friendLv
  134. {
  135. get { return _friendLv; }
  136. set { _friendLv = value; }
  137. }
  138. private int _favorability = default(int);
  139. /// <summary>
  140. /// 好感度
  141. /// </summary>
  142. [global::ProtoBuf.ProtoMember(10, IsRequired = false, Name=@"favorability", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  143. [global::System.ComponentModel.DefaultValue(default(int))]
  144. public int favorability
  145. {
  146. get { return _favorability; }
  147. set { _favorability = value; }
  148. }
  149. private int _adore = default(int);
  150. /// <summary>
  151. /// 倾慕值
  152. /// </summary>
  153. [global::ProtoBuf.ProtoMember(11, IsRequired = false, Name=@"adore", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  154. [global::System.ComponentModel.DefaultValue(default(int))]
  155. public int adore
  156. {
  157. get { return _adore; }
  158. set { _adore = value; }
  159. }
  160. private int _isConcerned = default(int);
  161. [global::ProtoBuf.ProtoMember(12, IsRequired = false, Name=@"isConcerned", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  162. [global::System.ComponentModel.DefaultValue(default(int))]
  163. public int isConcerned
  164. {
  165. get { return _isConcerned; }
  166. set { _isConcerned = value; }
  167. }
  168. private int _isOnline = default(int);
  169. [global::ProtoBuf.ProtoMember(13, IsRequired = false, Name=@"isOnline", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  170. [global::System.ComponentModel.DefaultValue(default(int))]
  171. public int isOnline
  172. {
  173. get { return _isOnline; }
  174. set { _isOnline = value; }
  175. }
  176. private pomelo.area.Position _currentPos = null;
  177. [global::ProtoBuf.ProtoMember(14, IsRequired = false, Name=@"currentPos", DataFormat = global::ProtoBuf.DataFormat.Default)]
  178. [global::System.ComponentModel.DefaultValue(null)]
  179. public pomelo.area.Position currentPos
  180. {
  181. get { return _currentPos; }
  182. set { _currentPos = value; }
  183. }
  184. private long _fightPower = default(long);
  185. [global::ProtoBuf.ProtoMember(15, IsRequired = false, Name=@"fightPower", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  186. [global::System.ComponentModel.DefaultValue(default(long))]
  187. public long fightPower
  188. {
  189. get { return _fightPower; }
  190. set { _fightPower = value; }
  191. }
  192. private int _hasAlly = default(int);
  193. [global::ProtoBuf.ProtoMember(16, IsRequired = false, Name=@"hasAlly", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  194. [global::System.ComponentModel.DefaultValue(default(int))]
  195. public int hasAlly
  196. {
  197. get { return _hasAlly; }
  198. set { _hasAlly = value; }
  199. }
  200. private int _icon = default(int);
  201. [global::ProtoBuf.ProtoMember(17, IsRequired = false, Name=@"icon", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  202. [global::System.ComponentModel.DefaultValue(default(int))]
  203. public int icon
  204. {
  205. get { return _icon; }
  206. set { _icon = value; }
  207. }
  208. private int _chouHenPoint = default(int);
  209. [global::ProtoBuf.ProtoMember(18, IsRequired = false, Name=@"chouHenPoint", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  210. [global::System.ComponentModel.DefaultValue(default(int))]
  211. public int chouHenPoint
  212. {
  213. get { return _chouHenPoint; }
  214. set { _chouHenPoint = value; }
  215. }
  216. private string _createTimeStamp = "";
  217. [global::ProtoBuf.ProtoMember(19, IsRequired = false, Name=@"createTimeStamp", DataFormat = global::ProtoBuf.DataFormat.Default)]
  218. [global::System.ComponentModel.DefaultValue("")]
  219. public string createTimeStamp
  220. {
  221. get { return _createTimeStamp; }
  222. set { _createTimeStamp = value; }
  223. }
  224. private string _createTime = "";
  225. [global::ProtoBuf.ProtoMember(20, IsRequired = false, Name=@"createTime", DataFormat = global::ProtoBuf.DataFormat.Default)]
  226. [global::System.ComponentModel.DefaultValue("")]
  227. public string createTime
  228. {
  229. get { return _createTime; }
  230. set { _createTime = value; }
  231. }
  232. private int _addFriendShipPoint = default(int);
  233. [global::ProtoBuf.ProtoMember(21, IsRequired = false, Name=@"addFriendShipPoint", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  234. [global::System.ComponentModel.DefaultValue(default(int))]
  235. public int addFriendShipPoint
  236. {
  237. get { return _addFriendShipPoint; }
  238. set { _addFriendShipPoint = value; }
  239. }
  240. private int _type = default(int);
  241. [global::ProtoBuf.ProtoMember(22, IsRequired = false, Name=@"type", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  242. [global::System.ComponentModel.DefaultValue(default(int))]
  243. public int type
  244. {
  245. get { return _type; }
  246. set { _type = value; }
  247. }
  248. private string _time = "";
  249. [global::ProtoBuf.ProtoMember(23, IsRequired = false, Name=@"time", DataFormat = global::ProtoBuf.DataFormat.Default)]
  250. [global::System.ComponentModel.DefaultValue("")]
  251. public string time
  252. {
  253. get { return _time; }
  254. set { _time = value; }
  255. }
  256. private int _isHaveDaoYou = default(int);
  257. /// <summary>
  258. /// 是否含有道友 0: 没有 1:有
  259. /// </summary>
  260. [global::ProtoBuf.ProtoMember(24, IsRequired = false, Name=@"isHaveDaoYou", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  261. [global::System.ComponentModel.DefaultValue(default(int))]
  262. public int isHaveDaoYou
  263. {
  264. get { return _isHaveDaoYou; }
  265. set { _isHaveDaoYou = value; }
  266. }
  267. private readonly global::System.Collections.Generic.List<pomelo.Avatar> _avatars = new global::System.Collections.Generic.List<pomelo.Avatar>();
  268. [global::ProtoBuf.ProtoMember(25, Name=@"avatars", DataFormat = global::ProtoBuf.DataFormat.Default)]
  269. public global::System.Collections.Generic.List<pomelo.Avatar> avatars
  270. {
  271. get { return _avatars; }
  272. }
  273. private int _unReadNum = default(int);
  274. /// <summary>
  275. /// 未读消息条数
  276. /// </summary>
  277. [global::ProtoBuf.ProtoMember(26, IsRequired = false, Name=@"unReadNum", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  278. [global::System.ComponentModel.DefaultValue(default(int))]
  279. public int unReadNum
  280. {
  281. get { return _unReadNum; }
  282. set { _unReadNum = value; }
  283. }
  284. private int _sex = default(int);
  285. /// <summary>
  286. /// 0:男 1:女
  287. /// </summary>
  288. [global::ProtoBuf.ProtoMember(27, IsRequired = false, Name=@"sex", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  289. [global::System.ComponentModel.DefaultValue(default(int))]
  290. public int sex
  291. {
  292. get { return _sex; }
  293. set { _sex = value; }
  294. }
  295. private long _recentChatTime = default(long);
  296. /// <summary>
  297. /// 最近一次聊天时间戳
  298. /// </summary>
  299. [global::ProtoBuf.ProtoMember(28, IsRequired = false, Name=@"recentChatTime", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  300. [global::System.ComponentModel.DefaultValue(default(long))]
  301. public long recentChatTime
  302. {
  303. get { return _recentChatTime; }
  304. set { _recentChatTime = value; }
  305. }
  306. private global::ProtoBuf.IExtension extensionObject;
  307. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  308. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  309. }
  310. //---------------------------------------------------------------------------------------
  311. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"ChatMsg")]
  312. public partial class ChatMsg : global::ProtoBuf.IExtensible
  313. {
  314. public ChatMsg() {}
  315. private string _s2c_playerId = "";
  316. /// <summary>
  317. /// 发送者id
  318. /// </summary>
  319. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"s2c_playerId", DataFormat = global::ProtoBuf.DataFormat.Default)]
  320. [global::System.ComponentModel.DefaultValue("")]
  321. public string s2c_playerId
  322. {
  323. get { return _s2c_playerId; }
  324. set { _s2c_playerId = value; }
  325. }
  326. private readonly global::System.Collections.Generic.List<pomelo.chat.ChatContent> _s2c_content = new global::System.Collections.Generic.List<pomelo.chat.ChatContent>();
  327. /// <summary>
  328. /// 聊天内容
  329. /// </summary>
  330. [global::ProtoBuf.ProtoMember(2, Name=@"s2c_content", DataFormat = global::ProtoBuf.DataFormat.Default)]
  331. public global::System.Collections.Generic.List<pomelo.chat.ChatContent> s2c_content
  332. {
  333. get { return _s2c_content; }
  334. }
  335. private string _s2c_time = "";
  336. /// <summary>
  337. /// 聊天时间
  338. /// </summary>
  339. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"s2c_time", DataFormat = global::ProtoBuf.DataFormat.Default)]
  340. [global::System.ComponentModel.DefaultValue("")]
  341. public string s2c_time
  342. {
  343. get { return _s2c_time; }
  344. set { _s2c_time = value; }
  345. }
  346. private string _s2c_acceptRid = "";
  347. /// <summary>
  348. /// 接收者id
  349. /// </summary>
  350. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"s2c_acceptRid", DataFormat = global::ProtoBuf.DataFormat.Default)]
  351. [global::System.ComponentModel.DefaultValue("")]
  352. public string s2c_acceptRid
  353. {
  354. get { return _s2c_acceptRid; }
  355. set { _s2c_acceptRid = value; }
  356. }
  357. private bool _s2c_voiceMsgIsRead = default(bool);
  358. /// <summary>
  359. /// 语音信息是否读取(true:已读取)
  360. /// </summary>
  361. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"s2c_voiceMsgIsRead", DataFormat = global::ProtoBuf.DataFormat.Default)]
  362. [global::System.ComponentModel.DefaultValue(default(bool))]
  363. public bool s2c_voiceMsgIsRead
  364. {
  365. get { return _s2c_voiceMsgIsRead; }
  366. set { _s2c_voiceMsgIsRead = value; }
  367. }
  368. private global::ProtoBuf.IExtension extensionObject;
  369. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  370. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  371. }
  372. //---------------------------------------------------------------------------------------
  373. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"FriendShopCondition")]
  374. public partial class FriendShopCondition : global::ProtoBuf.IExtensible
  375. {
  376. public FriendShopCondition() {}
  377. private int _type = default(int);
  378. /// <summary>
  379. /// 1:需要等级,2:需要进阶等级,3:需要vip等级,4:需要阵营,5:需要阵营声望等级
  380. /// </summary>
  381. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"type", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  382. [global::System.ComponentModel.DefaultValue(default(int))]
  383. public int type
  384. {
  385. get { return _type; }
  386. set { _type = value; }
  387. }
  388. private int _number = default(int);
  389. /// <summary>
  390. /// 级别,点数等
  391. /// </summary>
  392. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"number", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  393. [global::System.ComponentModel.DefaultValue(default(int))]
  394. public int number
  395. {
  396. get { return _number; }
  397. set { _number = value; }
  398. }
  399. private global::ProtoBuf.IExtension extensionObject;
  400. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  401. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  402. }
  403. //---------------------------------------------------------------------------------------
  404. /// <summary>
  405. /// 货币类型
  406. /// </summary>
  407. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"FriendShopMoneyInfo")]
  408. public partial class FriendShopMoneyInfo : global::ProtoBuf.IExtensible
  409. {
  410. public FriendShopMoneyInfo() {}
  411. private int _type;
  412. /// <summary>
  413. /// 货币类型;1:金币,2:钻石,3:金票,7:友情度
  414. /// </summary>
  415. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"type", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  416. public int type
  417. {
  418. get { return _type; }
  419. set { _type = value; }
  420. }
  421. private int _value;
  422. /// <summary>
  423. /// 货币数量
  424. /// </summary>
  425. [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"value", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  426. public int value
  427. {
  428. get { return _value; }
  429. set { _value = value; }
  430. }
  431. private global::ProtoBuf.IExtension extensionObject;
  432. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  433. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  434. }
  435. //---------------------------------------------------------------------------------------
  436. /// <summary>
  437. /// ****************************************** 请求 ******************************************
  438. /// </summary>
  439. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"FriendGetAllFriendsRequest")]
  440. public partial class FriendGetAllFriendsRequest : global::ProtoBuf.IExtensible
  441. {
  442. public FriendGetAllFriendsRequest() {}
  443. private string _c2s_friendId = "";
  444. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"c2s_friendId", DataFormat = global::ProtoBuf.DataFormat.Default)]
  445. [global::System.ComponentModel.DefaultValue("")]
  446. public string c2s_friendId
  447. {
  448. get { return _c2s_friendId; }
  449. set { _c2s_friendId = value; }
  450. }
  451. private int _c2s_type = default(int);
  452. /// <summary>
  453. /// 0-查看好友列表,1-查看对方与自己的关系
  454. /// </summary>
  455. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"c2s_type", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  456. [global::System.ComponentModel.DefaultValue(default(int))]
  457. public int c2s_type
  458. {
  459. get { return _c2s_type; }
  460. set { _c2s_type = value; }
  461. }
  462. private global::ProtoBuf.IExtension extensionObject;
  463. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  464. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  465. }
  466. //---------------------------------------------------------------------------------------
  467. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"FriendApplyRequest")]
  468. public partial class FriendApplyRequest : global::ProtoBuf.IExtensible
  469. {
  470. public FriendApplyRequest() {}
  471. private string _c2s_toPlayerId;
  472. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"c2s_toPlayerId", DataFormat = global::ProtoBuf.DataFormat.Default)]
  473. public string c2s_toPlayerId
  474. {
  475. get { return _c2s_toPlayerId; }
  476. set { _c2s_toPlayerId = value; }
  477. }
  478. private global::ProtoBuf.IExtension extensionObject;
  479. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  480. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  481. }
  482. //---------------------------------------------------------------------------------------
  483. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"FriendAllApplyRequest")]
  484. public partial class FriendAllApplyRequest : global::ProtoBuf.IExtensible
  485. {
  486. public FriendAllApplyRequest() {}
  487. private readonly global::System.Collections.Generic.List<string> _c2s_toPlayerIds = new global::System.Collections.Generic.List<string>();
  488. [global::ProtoBuf.ProtoMember(1, Name=@"c2s_toPlayerIds", DataFormat = global::ProtoBuf.DataFormat.Default)]
  489. public global::System.Collections.Generic.List<string> c2s_toPlayerIds
  490. {
  491. get { return _c2s_toPlayerIds; }
  492. }
  493. private global::ProtoBuf.IExtension extensionObject;
  494. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  495. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  496. }
  497. //---------------------------------------------------------------------------------------
  498. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"FriendAgreeApplyRequest")]
  499. public partial class FriendAgreeApplyRequest : global::ProtoBuf.IExtensible
  500. {
  501. public FriendAgreeApplyRequest() {}
  502. private string _c2s_requestId;
  503. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"c2s_requestId", DataFormat = global::ProtoBuf.DataFormat.Default)]
  504. public string c2s_requestId
  505. {
  506. get { return _c2s_requestId; }
  507. set { _c2s_requestId = value; }
  508. }
  509. private global::ProtoBuf.IExtension extensionObject;
  510. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  511. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  512. }
  513. //---------------------------------------------------------------------------------------
  514. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"FriendAllAgreeApplyRequest")]
  515. public partial class FriendAllAgreeApplyRequest : global::ProtoBuf.IExtensible
  516. {
  517. public FriendAllAgreeApplyRequest() {}
  518. private readonly global::System.Collections.Generic.List<string> _c2s_requestIds = new global::System.Collections.Generic.List<string>();
  519. [global::ProtoBuf.ProtoMember(1, Name=@"c2s_requestIds", DataFormat = global::ProtoBuf.DataFormat.Default)]
  520. public global::System.Collections.Generic.List<string> c2s_requestIds
  521. {
  522. get { return _c2s_requestIds; }
  523. }
  524. private global::ProtoBuf.IExtension extensionObject;
  525. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  526. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  527. }
  528. //---------------------------------------------------------------------------------------
  529. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"FriendRefuceApplyRequest")]
  530. public partial class FriendRefuceApplyRequest : global::ProtoBuf.IExtensible
  531. {
  532. public FriendRefuceApplyRequest() {}
  533. private string _c2s_requestId;
  534. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"c2s_requestId", DataFormat = global::ProtoBuf.DataFormat.Default)]
  535. public string c2s_requestId
  536. {
  537. get { return _c2s_requestId; }
  538. set { _c2s_requestId = value; }
  539. }
  540. private global::ProtoBuf.IExtension extensionObject;
  541. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  542. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  543. }
  544. //---------------------------------------------------------------------------------------
  545. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"FriendAllRefuceApplyRequest")]
  546. public partial class FriendAllRefuceApplyRequest : global::ProtoBuf.IExtensible
  547. {
  548. public FriendAllRefuceApplyRequest() {}
  549. private readonly global::System.Collections.Generic.List<string> _c2s_requestIds = new global::System.Collections.Generic.List<string>();
  550. [global::ProtoBuf.ProtoMember(1, Name=@"c2s_requestIds", DataFormat = global::ProtoBuf.DataFormat.Default)]
  551. public global::System.Collections.Generic.List<string> c2s_requestIds
  552. {
  553. get { return _c2s_requestIds; }
  554. }
  555. private global::ProtoBuf.IExtension extensionObject;
  556. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  557. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  558. }
  559. //---------------------------------------------------------------------------------------
  560. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"FriendGetFriendAwardRequest")]
  561. public partial class FriendGetFriendAwardRequest : global::ProtoBuf.IExtensible
  562. {
  563. public FriendGetFriendAwardRequest() {}
  564. private string _c2s_friendId;
  565. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"c2s_friendId", DataFormat = global::ProtoBuf.DataFormat.Default)]
  566. public string c2s_friendId
  567. {
  568. get { return _c2s_friendId; }
  569. set { _c2s_friendId = value; }
  570. }
  571. private int _c2s_awardId;
  572. [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"c2s_awardId", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  573. public int c2s_awardId
  574. {
  575. get { return _c2s_awardId; }
  576. set { _c2s_awardId = value; }
  577. }
  578. private global::ProtoBuf.IExtension extensionObject;
  579. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  580. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  581. }
  582. //---------------------------------------------------------------------------------------
  583. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"FriendDeleteRequest")]
  584. public partial class FriendDeleteRequest : global::ProtoBuf.IExtensible
  585. {
  586. public FriendDeleteRequest() {}
  587. private string _c2s_friendId;
  588. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"c2s_friendId", DataFormat = global::ProtoBuf.DataFormat.Default)]
  589. public string c2s_friendId
  590. {
  591. get { return _c2s_friendId; }
  592. set { _c2s_friendId = value; }
  593. }
  594. private global::ProtoBuf.IExtension extensionObject;
  595. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  596. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  597. }
  598. //---------------------------------------------------------------------------------------
  599. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"FriendAddFriendExpRequest")]
  600. public partial class FriendAddFriendExpRequest : global::ProtoBuf.IExtensible
  601. {
  602. public FriendAddFriendExpRequest() {}
  603. private string _c2s_friendId;
  604. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"c2s_friendId", DataFormat = global::ProtoBuf.DataFormat.Default)]
  605. public string c2s_friendId
  606. {
  607. get { return _c2s_friendId; }
  608. set { _c2s_friendId = value; }
  609. }
  610. private int _c2s_point;
  611. [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"c2s_point", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  612. public int c2s_point
  613. {
  614. get { return _c2s_point; }
  615. set { _c2s_point = value; }
  616. }
  617. private global::ProtoBuf.IExtension extensionObject;
  618. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  619. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  620. }
  621. //---------------------------------------------------------------------------------------
  622. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"FriendDeleteChouRenRequest")]
  623. public partial class FriendDeleteChouRenRequest : global::ProtoBuf.IExtensible
  624. {
  625. public FriendDeleteChouRenRequest() {}
  626. private string _c2s_chouRenId;
  627. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"c2s_chouRenId", DataFormat = global::ProtoBuf.DataFormat.Default)]
  628. public string c2s_chouRenId
  629. {
  630. get { return _c2s_chouRenId; }
  631. set { _c2s_chouRenId = value; }
  632. }
  633. private global::ProtoBuf.IExtension extensionObject;
  634. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  635. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  636. }
  637. //---------------------------------------------------------------------------------------
  638. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"FriendAllDeleteChouRenRequest")]
  639. public partial class FriendAllDeleteChouRenRequest : global::ProtoBuf.IExtensible
  640. {
  641. public FriendAllDeleteChouRenRequest() {}
  642. private readonly global::System.Collections.Generic.List<string> _c2s_chouRenIds = new global::System.Collections.Generic.List<string>();
  643. [global::ProtoBuf.ProtoMember(1, Name=@"c2s_chouRenIds", DataFormat = global::ProtoBuf.DataFormat.Default)]
  644. public global::System.Collections.Generic.List<string> c2s_chouRenIds
  645. {
  646. get { return _c2s_chouRenIds; }
  647. }
  648. private global::ProtoBuf.IExtension extensionObject;
  649. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  650. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  651. }
  652. //---------------------------------------------------------------------------------------
  653. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"FriendAddChouRenRequest")]
  654. public partial class FriendAddChouRenRequest : global::ProtoBuf.IExtensible
  655. {
  656. public FriendAddChouRenRequest() {}
  657. private string _c2s_chouRenId;
  658. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"c2s_chouRenId", DataFormat = global::ProtoBuf.DataFormat.Default)]
  659. public string c2s_chouRenId
  660. {
  661. get { return _c2s_chouRenId; }
  662. set { _c2s_chouRenId = value; }
  663. }
  664. private global::ProtoBuf.IExtension extensionObject;
  665. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  666. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  667. }
  668. //---------------------------------------------------------------------------------------
  669. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"AddFriendInfoRequest")]
  670. public partial class AddFriendInfoRequest : global::ProtoBuf.IExtensible
  671. {
  672. public AddFriendInfoRequest() {}
  673. private global::ProtoBuf.IExtension extensionObject;
  674. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  675. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  676. }
  677. //---------------------------------------------------------------------------------------
  678. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"QueryPlayerNameRequest")]
  679. public partial class QueryPlayerNameRequest : global::ProtoBuf.IExtensible
  680. {
  681. public QueryPlayerNameRequest() {}
  682. private string _c2s_strName;
  683. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"c2s_strName", DataFormat = global::ProtoBuf.DataFormat.Default)]
  684. public string c2s_strName
  685. {
  686. get { return _c2s_strName; }
  687. set { _c2s_strName = value; }
  688. }
  689. private global::ProtoBuf.IExtension extensionObject;
  690. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  691. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  692. }
  693. //---------------------------------------------------------------------------------------
  694. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"ConcernFriendRequest")]
  695. public partial class ConcernFriendRequest : global::ProtoBuf.IExtensible
  696. {
  697. public ConcernFriendRequest() {}
  698. private string _c2s_friendId;
  699. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"c2s_friendId", DataFormat = global::ProtoBuf.DataFormat.Default)]
  700. public string c2s_friendId
  701. {
  702. get { return _c2s_friendId; }
  703. set { _c2s_friendId = value; }
  704. }
  705. private global::ProtoBuf.IExtension extensionObject;
  706. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  707. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  708. }
  709. //---------------------------------------------------------------------------------------
  710. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"ConcernAllFriendRequest")]
  711. public partial class ConcernAllFriendRequest : global::ProtoBuf.IExtensible
  712. {
  713. public ConcernAllFriendRequest() {}
  714. private readonly global::System.Collections.Generic.List<string> _c2s_friendIds = new global::System.Collections.Generic.List<string>();
  715. [global::ProtoBuf.ProtoMember(1, Name=@"c2s_friendIds", DataFormat = global::ProtoBuf.DataFormat.Default)]
  716. public global::System.Collections.Generic.List<string> c2s_friendIds
  717. {
  718. get { return _c2s_friendIds; }
  719. }
  720. private global::ProtoBuf.IExtension extensionObject;
  721. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  722. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  723. }
  724. //---------------------------------------------------------------------------------------
  725. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"FriendMessageListRequest")]
  726. public partial class FriendMessageListRequest : global::ProtoBuf.IExtensible
  727. {
  728. public FriendMessageListRequest() {}
  729. private global::ProtoBuf.IExtension extensionObject;
  730. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  731. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  732. }
  733. //---------------------------------------------------------------------------------------
  734. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"DeleteAllFriendMessageRequest")]
  735. public partial class DeleteAllFriendMessageRequest : global::ProtoBuf.IExtensible
  736. {
  737. public DeleteAllFriendMessageRequest() {}
  738. private global::ProtoBuf.IExtension extensionObject;
  739. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  740. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  741. }
  742. //---------------------------------------------------------------------------------------
  743. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"DeleteBlackListRequest")]
  744. public partial class DeleteBlackListRequest : global::ProtoBuf.IExtensible
  745. {
  746. public DeleteBlackListRequest() {}
  747. private string _c2s_blackListId;
  748. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"c2s_blackListId", DataFormat = global::ProtoBuf.DataFormat.Default)]
  749. public string c2s_blackListId
  750. {
  751. get { return _c2s_blackListId; }
  752. set { _c2s_blackListId = value; }
  753. }
  754. private global::ProtoBuf.IExtension extensionObject;
  755. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  756. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  757. }
  758. //---------------------------------------------------------------------------------------
  759. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"DeleteAllBlackListRequest")]
  760. public partial class DeleteAllBlackListRequest : global::ProtoBuf.IExtensible
  761. {
  762. public DeleteAllBlackListRequest() {}
  763. private global::ProtoBuf.IExtension extensionObject;
  764. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  765. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  766. }
  767. //---------------------------------------------------------------------------------------
  768. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"AddBlackListRequest")]
  769. public partial class AddBlackListRequest : global::ProtoBuf.IExtensible
  770. {
  771. public AddBlackListRequest() {}
  772. private string _c2s_blackListId;
  773. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"c2s_blackListId", DataFormat = global::ProtoBuf.DataFormat.Default)]
  774. public string c2s_blackListId
  775. {
  776. get { return _c2s_blackListId; }
  777. set { _c2s_blackListId = value; }
  778. }
  779. private global::ProtoBuf.IExtension extensionObject;
  780. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  781. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  782. }
  783. //---------------------------------------------------------------------------------------
  784. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GetSocialInfoRequest")]
  785. public partial class GetSocialInfoRequest : global::ProtoBuf.IExtensible
  786. {
  787. public GetSocialInfoRequest() {}
  788. private global::ProtoBuf.IExtension extensionObject;
  789. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  790. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  791. }
  792. //---------------------------------------------------------------------------------------
  793. /// <summary>
  794. /// 赠送礼物 请求
  795. /// </summary>
  796. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GivePresentsRequest")]
  797. public partial class GivePresentsRequest : global::ProtoBuf.IExtensible
  798. {
  799. public GivePresentsRequest() {}
  800. private string _c2s_friendId;
  801. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"c2s_friendId", DataFormat = global::ProtoBuf.DataFormat.Default)]
  802. public string c2s_friendId
  803. {
  804. get { return _c2s_friendId; }
  805. set { _c2s_friendId = value; }
  806. }
  807. private int _c2s_giveType = default(int);
  808. /// <summary>
  809. /// 赠送类型(1:好友送礼 2:倾慕送礼 3.赠送灵修随从)
  810. /// </summary>
  811. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"c2s_giveType", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  812. [global::System.ComponentModel.DefaultValue(default(int))]
  813. public int c2s_giveType
  814. {
  815. get { return _c2s_giveType; }
  816. set { _c2s_giveType = value; }
  817. }
  818. private readonly global::System.Collections.Generic.List<pomelo.item.CountItem> _c2s_item = new global::System.Collections.Generic.List<pomelo.item.CountItem>();
  819. /// <summary>
  820. /// 赠送物品
  821. /// </summary>
  822. [global::ProtoBuf.ProtoMember(3, Name=@"c2s_item", DataFormat = global::ProtoBuf.DataFormat.Default)]
  823. public global::System.Collections.Generic.List<pomelo.item.CountItem> c2s_item
  824. {
  825. get { return _c2s_item; }
  826. }
  827. private global::ProtoBuf.IExtension extensionObject;
  828. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  829. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  830. }
  831. //---------------------------------------------------------------------------------------
  832. /// <summary>
  833. /// 读取语音信息 请求
  834. /// </summary>
  835. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"ReadVoiceMsgRequest")]
  836. public partial class ReadVoiceMsgRequest : global::ProtoBuf.IExtensible
  837. {
  838. public ReadVoiceMsgRequest() {}
  839. private string _c2s_friendId;
  840. /// <summary>
  841. /// 好友id
  842. /// </summary>
  843. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"c2s_friendId", DataFormat = global::ProtoBuf.DataFormat.Default)]
  844. public string c2s_friendId
  845. {
  846. get { return _c2s_friendId; }
  847. set { _c2s_friendId = value; }
  848. }
  849. private string _c2s_msgTime;
  850. /// <summary>
  851. /// 语音信息时间
  852. /// </summary>
  853. [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"c2s_msgTime", DataFormat = global::ProtoBuf.DataFormat.Default)]
  854. public string c2s_msgTime
  855. {
  856. get { return _c2s_msgTime; }
  857. set { _c2s_msgTime = value; }
  858. }
  859. private global::ProtoBuf.IExtension extensionObject;
  860. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  861. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  862. }
  863. //---------------------------------------------------------------------------------------
  864. /// <summary>
  865. /// ****************************************** 返回 ******************************************
  866. /// </summary>
  867. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"FriendGetAllFriendsResponse")]
  868. public partial class FriendGetAllFriendsResponse : global::ProtoBuf.IExtensible
  869. {
  870. public FriendGetAllFriendsResponse() {}
  871. private int _s2c_code;
  872. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  873. public int s2c_code
  874. {
  875. get { return _s2c_code; }
  876. set { _s2c_code = value; }
  877. }
  878. private string _s2c_msg = "";
  879. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  880. [global::System.ComponentModel.DefaultValue("")]
  881. public string s2c_msg
  882. {
  883. get { return _s2c_msg; }
  884. set { _s2c_msg = value; }
  885. }
  886. private readonly global::System.Collections.Generic.List<pomelo.area.PlayerInfo> _friends = new global::System.Collections.Generic.List<pomelo.area.PlayerInfo>();
  887. /// <summary>
  888. /// 好友
  889. /// </summary>
  890. [global::ProtoBuf.ProtoMember(3, Name=@"friends", DataFormat = global::ProtoBuf.DataFormat.Default)]
  891. public global::System.Collections.Generic.List<pomelo.area.PlayerInfo> friends
  892. {
  893. get { return _friends; }
  894. }
  895. private int _concernNum = default(int);
  896. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"concernNum", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  897. [global::System.ComponentModel.DefaultValue(default(int))]
  898. public int concernNum
  899. {
  900. get { return _concernNum; }
  901. set { _concernNum = value; }
  902. }
  903. private int _allConcernNum = default(int);
  904. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"allConcernNum", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  905. [global::System.ComponentModel.DefaultValue(default(int))]
  906. public int allConcernNum
  907. {
  908. get { return _allConcernNum; }
  909. set { _allConcernNum = value; }
  910. }
  911. private int _friendsNumMax = default(int);
  912. /// <summary>
  913. /// 好友上限
  914. /// </summary>
  915. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"friendsNumMax", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  916. [global::System.ComponentModel.DefaultValue(default(int))]
  917. public int friendsNumMax
  918. {
  919. get { return _friendsNumMax; }
  920. set { _friendsNumMax = value; }
  921. }
  922. private readonly global::System.Collections.Generic.List<pomelo.area.PlayerInfo> _chouRens = new global::System.Collections.Generic.List<pomelo.area.PlayerInfo>();
  923. /// <summary>
  924. /// 仇人
  925. /// </summary>
  926. [global::ProtoBuf.ProtoMember(7, Name=@"chouRens", DataFormat = global::ProtoBuf.DataFormat.Default)]
  927. public global::System.Collections.Generic.List<pomelo.area.PlayerInfo> chouRens
  928. {
  929. get { return _chouRens; }
  930. }
  931. private int _chouRensNumMax = default(int);
  932. /// <summary>
  933. /// 仇人上限
  934. /// </summary>
  935. [global::ProtoBuf.ProtoMember(8, IsRequired = false, Name=@"chouRensNumMax", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  936. [global::System.ComponentModel.DefaultValue(default(int))]
  937. public int chouRensNumMax
  938. {
  939. get { return _chouRensNumMax; }
  940. set { _chouRensNumMax = value; }
  941. }
  942. private readonly global::System.Collections.Generic.List<pomelo.area.PlayerInfo> _blackList = new global::System.Collections.Generic.List<pomelo.area.PlayerInfo>();
  943. /// <summary>
  944. /// 黑名单
  945. /// </summary>
  946. [global::ProtoBuf.ProtoMember(9, Name=@"blackList", DataFormat = global::ProtoBuf.DataFormat.Default)]
  947. public global::System.Collections.Generic.List<pomelo.area.PlayerInfo> blackList
  948. {
  949. get { return _blackList; }
  950. }
  951. private int _blackListNumMax = default(int);
  952. /// <summary>
  953. /// 黑名单上限
  954. /// </summary>
  955. [global::ProtoBuf.ProtoMember(10, IsRequired = false, Name=@"blackListNumMax", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  956. [global::System.ComponentModel.DefaultValue(default(int))]
  957. public int blackListNumMax
  958. {
  959. get { return _blackListNumMax; }
  960. set { _blackListNumMax = value; }
  961. }
  962. private int _reqType = default(int);
  963. /// <summary>
  964. /// 请求类型,为1时,才去读下面的relation
  965. /// </summary>
  966. [global::ProtoBuf.ProtoMember(11, IsRequired = false, Name=@"reqType", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  967. [global::System.ComponentModel.DefaultValue(default(int))]
  968. public int reqType
  969. {
  970. get { return _reqType; }
  971. set { _reqType = value; }
  972. }
  973. private int _relation = default(int);
  974. /// <summary>
  975. /// 关系,0-没有,1-好友,2-黑名单
  976. /// </summary>
  977. [global::ProtoBuf.ProtoMember(12, IsRequired = false, Name=@"relation", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  978. [global::System.ComponentModel.DefaultValue(default(int))]
  979. public int relation
  980. {
  981. get { return _relation; }
  982. set { _relation = value; }
  983. }
  984. private global::ProtoBuf.IExtension extensionObject;
  985. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  986. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  987. }
  988. //---------------------------------------------------------------------------------------
  989. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"FriendApplyResponse")]
  990. public partial class FriendApplyResponse : global::ProtoBuf.IExtensible
  991. {
  992. public FriendApplyResponse() {}
  993. private int _s2c_code;
  994. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  995. public int s2c_code
  996. {
  997. get { return _s2c_code; }
  998. set { _s2c_code = value; }
  999. }
  1000. private string _s2c_msg = "";
  1001. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1002. [global::System.ComponentModel.DefaultValue("")]
  1003. public string s2c_msg
  1004. {
  1005. get { return _s2c_msg; }
  1006. set { _s2c_msg = value; }
  1007. }
  1008. private global::ProtoBuf.IExtension extensionObject;
  1009. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1010. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1011. }
  1012. //---------------------------------------------------------------------------------------
  1013. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"FriendAllApplyResponse")]
  1014. public partial class FriendAllApplyResponse : global::ProtoBuf.IExtensible
  1015. {
  1016. public FriendAllApplyResponse() {}
  1017. private int _s2c_code;
  1018. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1019. public int s2c_code
  1020. {
  1021. get { return _s2c_code; }
  1022. set { _s2c_code = value; }
  1023. }
  1024. private string _s2c_msg = "";
  1025. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1026. [global::System.ComponentModel.DefaultValue("")]
  1027. public string s2c_msg
  1028. {
  1029. get { return _s2c_msg; }
  1030. set { _s2c_msg = value; }
  1031. }
  1032. private global::ProtoBuf.IExtension extensionObject;
  1033. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1034. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1035. }
  1036. //---------------------------------------------------------------------------------------
  1037. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"FriendAgreeApplyResponse")]
  1038. public partial class FriendAgreeApplyResponse : global::ProtoBuf.IExtensible
  1039. {
  1040. public FriendAgreeApplyResponse() {}
  1041. private int _s2c_code;
  1042. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1043. public int s2c_code
  1044. {
  1045. get { return _s2c_code; }
  1046. set { _s2c_code = value; }
  1047. }
  1048. private string _s2c_msg = "";
  1049. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1050. [global::System.ComponentModel.DefaultValue("")]
  1051. public string s2c_msg
  1052. {
  1053. get { return _s2c_msg; }
  1054. set { _s2c_msg = value; }
  1055. }
  1056. private global::ProtoBuf.IExtension extensionObject;
  1057. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1058. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1059. }
  1060. //---------------------------------------------------------------------------------------
  1061. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"FriendAllAgreeApplyResponse")]
  1062. public partial class FriendAllAgreeApplyResponse : global::ProtoBuf.IExtensible
  1063. {
  1064. public FriendAllAgreeApplyResponse() {}
  1065. private int _s2c_code;
  1066. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1067. public int s2c_code
  1068. {
  1069. get { return _s2c_code; }
  1070. set { _s2c_code = value; }
  1071. }
  1072. private string _s2c_msg = "";
  1073. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1074. [global::System.ComponentModel.DefaultValue("")]
  1075. public string s2c_msg
  1076. {
  1077. get { return _s2c_msg; }
  1078. set { _s2c_msg = value; }
  1079. }
  1080. private global::ProtoBuf.IExtension extensionObject;
  1081. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1082. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1083. }
  1084. //---------------------------------------------------------------------------------------
  1085. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"FriendRefuceApplyResponse")]
  1086. public partial class FriendRefuceApplyResponse : global::ProtoBuf.IExtensible
  1087. {
  1088. public FriendRefuceApplyResponse() {}
  1089. private int _s2c_code;
  1090. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1091. public int s2c_code
  1092. {
  1093. get { return _s2c_code; }
  1094. set { _s2c_code = value; }
  1095. }
  1096. private string _s2c_msg = "";
  1097. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1098. [global::System.ComponentModel.DefaultValue("")]
  1099. public string s2c_msg
  1100. {
  1101. get { return _s2c_msg; }
  1102. set { _s2c_msg = value; }
  1103. }
  1104. private global::ProtoBuf.IExtension extensionObject;
  1105. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1106. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1107. }
  1108. //---------------------------------------------------------------------------------------
  1109. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"FriendAllRefuceApplyResponse")]
  1110. public partial class FriendAllRefuceApplyResponse : global::ProtoBuf.IExtensible
  1111. {
  1112. public FriendAllRefuceApplyResponse() {}
  1113. private int _s2c_code;
  1114. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1115. public int s2c_code
  1116. {
  1117. get { return _s2c_code; }
  1118. set { _s2c_code = value; }
  1119. }
  1120. private string _s2c_msg = "";
  1121. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1122. [global::System.ComponentModel.DefaultValue("")]
  1123. public string s2c_msg
  1124. {
  1125. get { return _s2c_msg; }
  1126. set { _s2c_msg = value; }
  1127. }
  1128. private global::ProtoBuf.IExtension extensionObject;
  1129. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1130. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1131. }
  1132. //---------------------------------------------------------------------------------------
  1133. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"FriendGetFriendAwardResponse")]
  1134. public partial class FriendGetFriendAwardResponse : global::ProtoBuf.IExtensible
  1135. {
  1136. public FriendGetFriendAwardResponse() {}
  1137. private int _s2c_code;
  1138. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1139. public int s2c_code
  1140. {
  1141. get { return _s2c_code; }
  1142. set { _s2c_code = value; }
  1143. }
  1144. private string _s2c_msg = "";
  1145. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1146. [global::System.ComponentModel.DefaultValue("")]
  1147. public string s2c_msg
  1148. {
  1149. get { return _s2c_msg; }
  1150. set { _s2c_msg = value; }
  1151. }
  1152. private global::ProtoBuf.IExtension extensionObject;
  1153. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1154. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1155. }
  1156. //---------------------------------------------------------------------------------------
  1157. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"FriendDeleteResponse")]
  1158. public partial class FriendDeleteResponse : global::ProtoBuf.IExtensible
  1159. {
  1160. public FriendDeleteResponse() {}
  1161. private int _s2c_code;
  1162. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1163. public int s2c_code
  1164. {
  1165. get { return _s2c_code; }
  1166. set { _s2c_code = value; }
  1167. }
  1168. private string _s2c_msg = "";
  1169. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1170. [global::System.ComponentModel.DefaultValue("")]
  1171. public string s2c_msg
  1172. {
  1173. get { return _s2c_msg; }
  1174. set { _s2c_msg = value; }
  1175. }
  1176. private global::ProtoBuf.IExtension extensionObject;
  1177. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1178. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1179. }
  1180. //---------------------------------------------------------------------------------------
  1181. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"FriendAddFriendExpResponse")]
  1182. public partial class FriendAddFriendExpResponse : global::ProtoBuf.IExtensible
  1183. {
  1184. public FriendAddFriendExpResponse() {}
  1185. private int _s2c_code;
  1186. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1187. public int s2c_code
  1188. {
  1189. get { return _s2c_code; }
  1190. set { _s2c_code = value; }
  1191. }
  1192. private string _s2c_msg = "";
  1193. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1194. [global::System.ComponentModel.DefaultValue("")]
  1195. public string s2c_msg
  1196. {
  1197. get { return _s2c_msg; }
  1198. set { _s2c_msg = value; }
  1199. }
  1200. private int _friendLv;
  1201. [global::ProtoBuf.ProtoMember(3, IsRequired = true, Name=@"friendLv", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1202. public int friendLv
  1203. {
  1204. get { return _friendLv; }
  1205. set { _friendLv = value; }
  1206. }
  1207. private int _friendExp;
  1208. [global::ProtoBuf.ProtoMember(4, IsRequired = true, Name=@"friendExp", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1209. public int friendExp
  1210. {
  1211. get { return _friendExp; }
  1212. set { _friendExp = value; }
  1213. }
  1214. private int _validAwardsNum;
  1215. [global::ProtoBuf.ProtoMember(5, IsRequired = true, Name=@"validAwardsNum", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1216. public int validAwardsNum
  1217. {
  1218. get { return _validAwardsNum; }
  1219. set { _validAwardsNum = value; }
  1220. }
  1221. private global::ProtoBuf.IExtension extensionObject;
  1222. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1223. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1224. }
  1225. //---------------------------------------------------------------------------------------
  1226. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"FriendDeleteChouRenResponse")]
  1227. public partial class FriendDeleteChouRenResponse : global::ProtoBuf.IExtensible
  1228. {
  1229. public FriendDeleteChouRenResponse() {}
  1230. private int _s2c_code;
  1231. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1232. public int s2c_code
  1233. {
  1234. get { return _s2c_code; }
  1235. set { _s2c_code = value; }
  1236. }
  1237. private string _s2c_msg = "";
  1238. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1239. [global::System.ComponentModel.DefaultValue("")]
  1240. public string s2c_msg
  1241. {
  1242. get { return _s2c_msg; }
  1243. set { _s2c_msg = value; }
  1244. }
  1245. private global::ProtoBuf.IExtension extensionObject;
  1246. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1247. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1248. }
  1249. //---------------------------------------------------------------------------------------
  1250. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"FriendAllDeleteChouRenResponse")]
  1251. public partial class FriendAllDeleteChouRenResponse : global::ProtoBuf.IExtensible
  1252. {
  1253. public FriendAllDeleteChouRenResponse() {}
  1254. private int _s2c_code;
  1255. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1256. public int s2c_code
  1257. {
  1258. get { return _s2c_code; }
  1259. set { _s2c_code = value; }
  1260. }
  1261. private string _s2c_msg = "";
  1262. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1263. [global::System.ComponentModel.DefaultValue("")]
  1264. public string s2c_msg
  1265. {
  1266. get { return _s2c_msg; }
  1267. set { _s2c_msg = value; }
  1268. }
  1269. private global::ProtoBuf.IExtension extensionObject;
  1270. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1271. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1272. }
  1273. //---------------------------------------------------------------------------------------
  1274. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"FriendAddChouRenResponse")]
  1275. public partial class FriendAddChouRenResponse : global::ProtoBuf.IExtensible
  1276. {
  1277. public FriendAddChouRenResponse() {}
  1278. private int _s2c_code;
  1279. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1280. public int s2c_code
  1281. {
  1282. get { return _s2c_code; }
  1283. set { _s2c_code = value; }
  1284. }
  1285. private string _s2c_msg = "";
  1286. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1287. [global::System.ComponentModel.DefaultValue("")]
  1288. public string s2c_msg
  1289. {
  1290. get { return _s2c_msg; }
  1291. set { _s2c_msg = value; }
  1292. }
  1293. private global::ProtoBuf.IExtension extensionObject;
  1294. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1295. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1296. }
  1297. //---------------------------------------------------------------------------------------
  1298. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"AddFriendInfoResponse")]
  1299. public partial class AddFriendInfoResponse : global::ProtoBuf.IExtensible
  1300. {
  1301. public AddFriendInfoResponse() {}
  1302. private int _s2c_code;
  1303. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1304. public int s2c_code
  1305. {
  1306. get { return _s2c_code; }
  1307. set { _s2c_code = value; }
  1308. }
  1309. private string _s2c_msg = "";
  1310. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1311. [global::System.ComponentModel.DefaultValue("")]
  1312. public string s2c_msg
  1313. {
  1314. get { return _s2c_msg; }
  1315. set { _s2c_msg = value; }
  1316. }
  1317. private readonly global::System.Collections.Generic.List<pomelo.area.PlayerInfo> _data = new global::System.Collections.Generic.List<pomelo.area.PlayerInfo>();
  1318. [global::ProtoBuf.ProtoMember(3, Name=@"data", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1319. public global::System.Collections.Generic.List<pomelo.area.PlayerInfo> data
  1320. {
  1321. get { return _data; }
  1322. }
  1323. private global::ProtoBuf.IExtension extensionObject;
  1324. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1325. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1326. }
  1327. //---------------------------------------------------------------------------------------
  1328. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"QueryPlayerNameResponse")]
  1329. public partial class QueryPlayerNameResponse : global::ProtoBuf.IExtensible
  1330. {
  1331. public QueryPlayerNameResponse() {}
  1332. private int _s2c_code;
  1333. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1334. public int s2c_code
  1335. {
  1336. get { return _s2c_code; }
  1337. set { _s2c_code = value; }
  1338. }
  1339. private string _s2c_msg = "";
  1340. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1341. [global::System.ComponentModel.DefaultValue("")]
  1342. public string s2c_msg
  1343. {
  1344. get { return _s2c_msg; }
  1345. set { _s2c_msg = value; }
  1346. }
  1347. private readonly global::System.Collections.Generic.List<pomelo.area.PlayerInfo> _data = new global::System.Collections.Generic.List<pomelo.area.PlayerInfo>();
  1348. [global::ProtoBuf.ProtoMember(3, Name=@"data", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1349. public global::System.Collections.Generic.List<pomelo.area.PlayerInfo> data
  1350. {
  1351. get { return _data; }
  1352. }
  1353. private global::ProtoBuf.IExtension extensionObject;
  1354. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1355. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1356. }
  1357. //---------------------------------------------------------------------------------------
  1358. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"ConcernFriendResponse")]
  1359. public partial class ConcernFriendResponse : global::ProtoBuf.IExtensible
  1360. {
  1361. public ConcernFriendResponse() {}
  1362. private int _s2c_code;
  1363. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1364. public int s2c_code
  1365. {
  1366. get { return _s2c_code; }
  1367. set { _s2c_code = value; }
  1368. }
  1369. private string _s2c_msg = "";
  1370. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1371. [global::System.ComponentModel.DefaultValue("")]
  1372. public string s2c_msg
  1373. {
  1374. get { return _s2c_msg; }
  1375. set { _s2c_msg = value; }
  1376. }
  1377. private global::ProtoBuf.IExtension extensionObject;
  1378. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1379. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1380. }
  1381. //---------------------------------------------------------------------------------------
  1382. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"ConcernAllFriendResponse")]
  1383. public partial class ConcernAllFriendResponse : global::ProtoBuf.IExtensible
  1384. {
  1385. public ConcernAllFriendResponse() {}
  1386. private int _s2c_code;
  1387. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1388. public int s2c_code
  1389. {
  1390. get { return _s2c_code; }
  1391. set { _s2c_code = value; }
  1392. }
  1393. private string _s2c_msg = "";
  1394. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1395. [global::System.ComponentModel.DefaultValue("")]
  1396. public string s2c_msg
  1397. {
  1398. get { return _s2c_msg; }
  1399. set { _s2c_msg = value; }
  1400. }
  1401. private global::ProtoBuf.IExtension extensionObject;
  1402. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1403. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1404. }
  1405. //---------------------------------------------------------------------------------------
  1406. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"FriendMessageListResponse")]
  1407. public partial class FriendMessageListResponse : global::ProtoBuf.IExtensible
  1408. {
  1409. public FriendMessageListResponse() {}
  1410. private int _s2c_code;
  1411. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1412. public int s2c_code
  1413. {
  1414. get { return _s2c_code; }
  1415. set { _s2c_code = value; }
  1416. }
  1417. private string _s2c_msg = "";
  1418. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1419. [global::System.ComponentModel.DefaultValue("")]
  1420. public string s2c_msg
  1421. {
  1422. get { return _s2c_msg; }
  1423. set { _s2c_msg = value; }
  1424. }
  1425. private readonly global::System.Collections.Generic.List<pomelo.area.PlayerInfo> _friendMessageInfos = new global::System.Collections.Generic.List<pomelo.area.PlayerInfo>();
  1426. [global::ProtoBuf.ProtoMember(3, Name=@"friendMessageInfos", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1427. public global::System.Collections.Generic.List<pomelo.area.PlayerInfo> friendMessageInfos
  1428. {
  1429. get { return _friendMessageInfos; }
  1430. }
  1431. private int _messageNumMax;
  1432. [global::ProtoBuf.ProtoMember(4, IsRequired = true, Name=@"messageNumMax", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1433. public int messageNumMax
  1434. {
  1435. get { return _messageNumMax; }
  1436. set { _messageNumMax = value; }
  1437. }
  1438. private string _friendlyCode;
  1439. [global::ProtoBuf.ProtoMember(5, IsRequired = true, Name=@"friendlyCode", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1440. public string friendlyCode
  1441. {
  1442. get { return _friendlyCode; }
  1443. set { _friendlyCode = value; }
  1444. }
  1445. private global::ProtoBuf.IExtension extensionObject;
  1446. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1447. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1448. }
  1449. //---------------------------------------------------------------------------------------
  1450. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"DeleteAllFriendMessageResponse")]
  1451. public partial class DeleteAllFriendMessageResponse : global::ProtoBuf.IExtensible
  1452. {
  1453. public DeleteAllFriendMessageResponse() {}
  1454. private int _s2c_code;
  1455. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1456. public int s2c_code
  1457. {
  1458. get { return _s2c_code; }
  1459. set { _s2c_code = value; }
  1460. }
  1461. private string _s2c_msg = "";
  1462. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1463. [global::System.ComponentModel.DefaultValue("")]
  1464. public string s2c_msg
  1465. {
  1466. get { return _s2c_msg; }
  1467. set { _s2c_msg = value; }
  1468. }
  1469. private global::ProtoBuf.IExtension extensionObject;
  1470. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1471. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1472. }
  1473. //---------------------------------------------------------------------------------------
  1474. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"DeleteBlackListResponse")]
  1475. public partial class DeleteBlackListResponse : global::ProtoBuf.IExtensible
  1476. {
  1477. public DeleteBlackListResponse() {}
  1478. private int _s2c_code;
  1479. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1480. public int s2c_code
  1481. {
  1482. get { return _s2c_code; }
  1483. set { _s2c_code = value; }
  1484. }
  1485. private string _s2c_msg = "";
  1486. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1487. [global::System.ComponentModel.DefaultValue("")]
  1488. public string s2c_msg
  1489. {
  1490. get { return _s2c_msg; }
  1491. set { _s2c_msg = value; }
  1492. }
  1493. private global::ProtoBuf.IExtension extensionObject;
  1494. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1495. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1496. }
  1497. //---------------------------------------------------------------------------------------
  1498. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"DeleteAllBlackListResponse")]
  1499. public partial class DeleteAllBlackListResponse : global::ProtoBuf.IExtensible
  1500. {
  1501. public DeleteAllBlackListResponse() {}
  1502. private int _s2c_code;
  1503. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1504. public int s2c_code
  1505. {
  1506. get { return _s2c_code; }
  1507. set { _s2c_code = value; }
  1508. }
  1509. private string _s2c_msg = "";
  1510. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1511. [global::System.ComponentModel.DefaultValue("")]
  1512. public string s2c_msg
  1513. {
  1514. get { return _s2c_msg; }
  1515. set { _s2c_msg = value; }
  1516. }
  1517. private global::ProtoBuf.IExtension extensionObject;
  1518. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1519. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1520. }
  1521. //---------------------------------------------------------------------------------------
  1522. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"AddBlackListResponse")]
  1523. public partial class AddBlackListResponse : global::ProtoBuf.IExtensible
  1524. {
  1525. public AddBlackListResponse() {}
  1526. private int _s2c_code;
  1527. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1528. public int s2c_code
  1529. {
  1530. get { return _s2c_code; }
  1531. set { _s2c_code = value; }
  1532. }
  1533. private string _s2c_msg = "";
  1534. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1535. [global::System.ComponentModel.DefaultValue("")]
  1536. public string s2c_msg
  1537. {
  1538. get { return _s2c_msg; }
  1539. set { _s2c_msg = value; }
  1540. }
  1541. private global::ProtoBuf.IExtension extensionObject;
  1542. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1543. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1544. }
  1545. //---------------------------------------------------------------------------------------
  1546. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GetSocialInfoResponse")]
  1547. public partial class GetSocialInfoResponse : global::ProtoBuf.IExtensible
  1548. {
  1549. public GetSocialInfoResponse() {}
  1550. private int _s2c_code;
  1551. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1552. public int s2c_code
  1553. {
  1554. get { return _s2c_code; }
  1555. set { _s2c_code = value; }
  1556. }
  1557. private string _s2c_msg = "";
  1558. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1559. [global::System.ComponentModel.DefaultValue("")]
  1560. public string s2c_msg
  1561. {
  1562. get { return _s2c_msg; }
  1563. set { _s2c_msg = value; }
  1564. }
  1565. private int _addPointToday;
  1566. [global::ProtoBuf.ProtoMember(3, IsRequired = true, Name=@"addPointToday", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1567. public int addPointToday
  1568. {
  1569. get { return _addPointToday; }
  1570. set { _addPointToday = value; }
  1571. }
  1572. private int _friendShipPoint;
  1573. [global::ProtoBuf.ProtoMember(4, IsRequired = true, Name=@"friendShipPoint", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1574. public int friendShipPoint
  1575. {
  1576. get { return _friendShipPoint; }
  1577. set { _friendShipPoint = value; }
  1578. }
  1579. private int _addPointTodayMax;
  1580. [global::ProtoBuf.ProtoMember(5, IsRequired = true, Name=@"addPointTodayMax", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1581. public int addPointTodayMax
  1582. {
  1583. get { return _addPointTodayMax; }
  1584. set { _addPointTodayMax = value; }
  1585. }
  1586. private global::ProtoBuf.IExtension extensionObject;
  1587. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1588. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1589. }
  1590. //---------------------------------------------------------------------------------------
  1591. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GetShopItemListRequest")]
  1592. public partial class GetShopItemListRequest : global::ProtoBuf.IExtensible
  1593. {
  1594. public GetShopItemListRequest() {}
  1595. private global::ProtoBuf.IExtension extensionObject;
  1596. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1597. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1598. }
  1599. //---------------------------------------------------------------------------------------
  1600. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"ExchangeFriendShopItemRequest")]
  1601. public partial class ExchangeFriendShopItemRequest : global::ProtoBuf.IExtensible
  1602. {
  1603. public ExchangeFriendShopItemRequest() {}
  1604. private int _c2s_itemId;
  1605. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"c2s_itemId", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1606. public int c2s_itemId
  1607. {
  1608. get { return _c2s_itemId; }
  1609. set { _c2s_itemId = value; }
  1610. }
  1611. private int _c2s_num;
  1612. /// <summary>
  1613. /// 数量
  1614. /// </summary>
  1615. [global::ProtoBuf.ProtoMember(3, IsRequired = true, Name=@"c2s_num", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1616. public int c2s_num
  1617. {
  1618. get { return _c2s_num; }
  1619. set { _c2s_num = value; }
  1620. }
  1621. private global::ProtoBuf.IExtension extensionObject;
  1622. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1623. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1624. }
  1625. //---------------------------------------------------------------------------------------
  1626. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"FriendShopExchangeInfo")]
  1627. public partial class FriendShopExchangeInfo : global::ProtoBuf.IExtensible
  1628. {
  1629. public FriendShopExchangeInfo() {}
  1630. private int _itemId = default(int);
  1631. /// <summary>
  1632. /// 编号Id
  1633. /// </summary>
  1634. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"itemId", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1635. [global::System.ComponentModel.DefaultValue(default(int))]
  1636. public int itemId
  1637. {
  1638. get { return _itemId; }
  1639. set { _itemId = value; }
  1640. }
  1641. private string _ItemCode = "";
  1642. /// <summary>
  1643. /// 物品code
  1644. /// </summary>
  1645. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"ItemCode", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1646. [global::System.ComponentModel.DefaultValue("")]
  1647. public string ItemCode
  1648. {
  1649. get { return _ItemCode; }
  1650. set { _ItemCode = value; }
  1651. }
  1652. private readonly global::System.Collections.Generic.List<pomelo.area.FriendShopCondition> _condition = new global::System.Collections.Generic.List<pomelo.area.FriendShopCondition>();
  1653. /// <summary>
  1654. /// 前提条件
  1655. /// </summary>
  1656. [global::ProtoBuf.ProtoMember(3, Name=@"condition", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1657. public global::System.Collections.Generic.List<pomelo.area.FriendShopCondition> condition
  1658. {
  1659. get { return _condition; }
  1660. }
  1661. private readonly global::System.Collections.Generic.List<pomelo.area.FriendShopMoneyInfo> _needMoney = new global::System.Collections.Generic.List<pomelo.area.FriendShopMoneyInfo>();
  1662. /// <summary>
  1663. /// 需要的货币
  1664. /// </summary>
  1665. [global::ProtoBuf.ProtoMember(4, Name=@"needMoney", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1666. public global::System.Collections.Generic.List<pomelo.area.FriendShopMoneyInfo> needMoney
  1667. {
  1668. get { return _needMoney; }
  1669. }
  1670. private int _meetCondition = default(int);
  1671. /// <summary>
  1672. /// 是否满足兑换条件
  1673. /// </summary>
  1674. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"meetCondition", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1675. [global::System.ComponentModel.DefaultValue(default(int))]
  1676. public int meetCondition
  1677. {
  1678. get { return _meetCondition; }
  1679. set { _meetCondition = value; }
  1680. }
  1681. private int _maxExchangeNum = default(int);
  1682. /// <summary>
  1683. /// 可兑换的数量
  1684. /// </summary>
  1685. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"maxExchangeNum", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1686. [global::System.ComponentModel.DefaultValue(default(int))]
  1687. public int maxExchangeNum
  1688. {
  1689. get { return _maxExchangeNum; }
  1690. set { _maxExchangeNum = value; }
  1691. }
  1692. private int _state = default(int);
  1693. /// <summary>
  1694. /// 0:保留 1:正常 2:售罄
  1695. /// </summary>
  1696. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"state", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1697. [global::System.ComponentModel.DefaultValue(default(int))]
  1698. public int state
  1699. {
  1700. get { return _state; }
  1701. set { _state = value; }
  1702. }
  1703. private global::ProtoBuf.IExtension extensionObject;
  1704. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1705. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1706. }
  1707. //---------------------------------------------------------------------------------------
  1708. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GetShopItemListResponse")]
  1709. public partial class GetShopItemListResponse : global::ProtoBuf.IExtensible
  1710. {
  1711. public GetShopItemListResponse() {}
  1712. private int _s2c_code;
  1713. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1714. public int s2c_code
  1715. {
  1716. get { return _s2c_code; }
  1717. set { _s2c_code = value; }
  1718. }
  1719. private string _s2c_msg = "";
  1720. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1721. [global::System.ComponentModel.DefaultValue("")]
  1722. public string s2c_msg
  1723. {
  1724. get { return _s2c_msg; }
  1725. set { _s2c_msg = value; }
  1726. }
  1727. private readonly global::System.Collections.Generic.List<pomelo.area.FriendShopExchangeInfo> _s2c_data = new global::System.Collections.Generic.List<pomelo.area.FriendShopExchangeInfo>();
  1728. [global::ProtoBuf.ProtoMember(3, Name=@"s2c_data", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1729. public global::System.Collections.Generic.List<pomelo.area.FriendShopExchangeInfo> s2c_data
  1730. {
  1731. get { return _s2c_data; }
  1732. }
  1733. private global::ProtoBuf.IExtension extensionObject;
  1734. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1735. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1736. }
  1737. //---------------------------------------------------------------------------------------
  1738. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"ExchangeFriendShopItemResponse")]
  1739. public partial class ExchangeFriendShopItemResponse : global::ProtoBuf.IExtensible
  1740. {
  1741. public ExchangeFriendShopItemResponse() {}
  1742. private int _s2c_code;
  1743. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1744. public int s2c_code
  1745. {
  1746. get { return _s2c_code; }
  1747. set { _s2c_code = value; }
  1748. }
  1749. private string _s2c_msg = "";
  1750. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1751. [global::System.ComponentModel.DefaultValue("")]
  1752. public string s2c_msg
  1753. {
  1754. get { return _s2c_msg; }
  1755. set { _s2c_msg = value; }
  1756. }
  1757. private global::ProtoBuf.IExtension extensionObject;
  1758. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1759. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1760. }
  1761. //---------------------------------------------------------------------------------------
  1762. /// <summary>
  1763. /// 获取联系人列表 请求
  1764. /// </summary>
  1765. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GetRecentChatListRequest")]
  1766. public partial class GetRecentChatListRequest : global::ProtoBuf.IExtensible
  1767. {
  1768. public GetRecentChatListRequest() {}
  1769. private global::ProtoBuf.IExtension extensionObject;
  1770. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1771. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1772. }
  1773. //---------------------------------------------------------------------------------------
  1774. /// <summary>
  1775. /// 获取联系人列表 返回
  1776. /// </summary>
  1777. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GetRecentChatListResponse")]
  1778. public partial class GetRecentChatListResponse : global::ProtoBuf.IExtensible
  1779. {
  1780. public GetRecentChatListResponse() {}
  1781. private int _s2c_code;
  1782. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1783. public int s2c_code
  1784. {
  1785. get { return _s2c_code; }
  1786. set { _s2c_code = value; }
  1787. }
  1788. private string _s2c_msg = "";
  1789. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1790. [global::System.ComponentModel.DefaultValue("")]
  1791. public string s2c_msg
  1792. {
  1793. get { return _s2c_msg; }
  1794. set { _s2c_msg = value; }
  1795. }
  1796. private readonly global::System.Collections.Generic.List<pomelo.area.PlayerInfo> _s2c_ls = new global::System.Collections.Generic.List<pomelo.area.PlayerInfo>();
  1797. [global::ProtoBuf.ProtoMember(3, Name=@"s2c_ls", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1798. public global::System.Collections.Generic.List<pomelo.area.PlayerInfo> s2c_ls
  1799. {
  1800. get { return _s2c_ls; }
  1801. }
  1802. private global::ProtoBuf.IExtension extensionObject;
  1803. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1804. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1805. }
  1806. //---------------------------------------------------------------------------------------
  1807. /// <summary>
  1808. /// 获取聊天消息请求
  1809. /// </summary>
  1810. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GetChatMsgRequest")]
  1811. public partial class GetChatMsgRequest : global::ProtoBuf.IExtensible
  1812. {
  1813. public GetChatMsgRequest() {}
  1814. private string _c2s_friendId;
  1815. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"c2s_friendId", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1816. public string c2s_friendId
  1817. {
  1818. get { return _c2s_friendId; }
  1819. set { _c2s_friendId = value; }
  1820. }
  1821. private global::ProtoBuf.IExtension extensionObject;
  1822. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1823. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1824. }
  1825. //---------------------------------------------------------------------------------------
  1826. /// <summary>
  1827. /// 获取聊天消息返回
  1828. /// </summary>
  1829. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GetChatMsgResponse")]
  1830. public partial class GetChatMsgResponse : global::ProtoBuf.IExtensible
  1831. {
  1832. public GetChatMsgResponse() {}
  1833. private int _s2c_code;
  1834. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1835. public int s2c_code
  1836. {
  1837. get { return _s2c_code; }
  1838. set { _s2c_code = value; }
  1839. }
  1840. private string _s2c_msg = "";
  1841. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1842. [global::System.ComponentModel.DefaultValue("")]
  1843. public string s2c_msg
  1844. {
  1845. get { return _s2c_msg; }
  1846. set { _s2c_msg = value; }
  1847. }
  1848. private readonly global::System.Collections.Generic.List<pomelo.area.ChatMsg> _s2c_msgLs = new global::System.Collections.Generic.List<pomelo.area.ChatMsg>();
  1849. /// <summary>
  1850. /// 消息列表
  1851. /// </summary>
  1852. [global::ProtoBuf.ProtoMember(3, Name=@"s2c_msgLs", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1853. public global::System.Collections.Generic.List<pomelo.area.ChatMsg> s2c_msgLs
  1854. {
  1855. get { return _s2c_msgLs; }
  1856. }
  1857. private global::ProtoBuf.IExtension extensionObject;
  1858. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1859. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1860. }
  1861. //---------------------------------------------------------------------------------------
  1862. /// <summary>
  1863. /// 删除好友聊天记录 请求
  1864. /// </summary>
  1865. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"RmChatMsgRequest")]
  1866. public partial class RmChatMsgRequest : global::ProtoBuf.IExtensible
  1867. {
  1868. public RmChatMsgRequest() {}
  1869. private string _c2s_friendId;
  1870. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"c2s_friendId", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1871. public string c2s_friendId
  1872. {
  1873. get { return _c2s_friendId; }
  1874. set { _c2s_friendId = value; }
  1875. }
  1876. private global::ProtoBuf.IExtension extensionObject;
  1877. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1878. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1879. }
  1880. //---------------------------------------------------------------------------------------
  1881. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"RmChatMsgResponse")]
  1882. public partial class RmChatMsgResponse : global::ProtoBuf.IExtensible
  1883. {
  1884. public RmChatMsgResponse() {}
  1885. private int _s2c_code;
  1886. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1887. public int s2c_code
  1888. {
  1889. get { return _s2c_code; }
  1890. set { _s2c_code = value; }
  1891. }
  1892. private string _s2c_msg = "";
  1893. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1894. [global::System.ComponentModel.DefaultValue("")]
  1895. public string s2c_msg
  1896. {
  1897. get { return _s2c_msg; }
  1898. set { _s2c_msg = value; }
  1899. }
  1900. private global::ProtoBuf.IExtension extensionObject;
  1901. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1902. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1903. }
  1904. //---------------------------------------------------------------------------------------
  1905. /// <summary>
  1906. /// 赠送礼物 返回
  1907. /// </summary>
  1908. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GivePresentsResponse")]
  1909. public partial class GivePresentsResponse : global::ProtoBuf.IExtensible
  1910. {
  1911. public GivePresentsResponse() {}
  1912. private int _s2c_code;
  1913. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1914. public int s2c_code
  1915. {
  1916. get { return _s2c_code; }
  1917. set { _s2c_code = value; }
  1918. }
  1919. private string _s2c_msg = "";
  1920. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1921. [global::System.ComponentModel.DefaultValue("")]
  1922. public string s2c_msg
  1923. {
  1924. get { return _s2c_msg; }
  1925. set { _s2c_msg = value; }
  1926. }
  1927. private global::ProtoBuf.IExtension extensionObject;
  1928. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1929. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1930. }
  1931. //---------------------------------------------------------------------------------------
  1932. /// <summary>
  1933. /// 读取语音信息 返回
  1934. /// </summary>
  1935. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"ReadVoiceMsgResponse")]
  1936. public partial class ReadVoiceMsgResponse : global::ProtoBuf.IExtensible
  1937. {
  1938. public ReadVoiceMsgResponse() {}
  1939. private int _s2c_code;
  1940. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1941. public int s2c_code
  1942. {
  1943. get { return _s2c_code; }
  1944. set { _s2c_code = value; }
  1945. }
  1946. private string _s2c_msg = "";
  1947. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1948. [global::System.ComponentModel.DefaultValue("")]
  1949. public string s2c_msg
  1950. {
  1951. get { return _s2c_msg; }
  1952. set { _s2c_msg = value; }
  1953. }
  1954. private global::ProtoBuf.IExtension extensionObject;
  1955. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1956. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1957. }
  1958. //---------------------------------------------------------------------------------------
  1959. /// <summary>
  1960. /// 赠送物品推送
  1961. /// </summary>
  1962. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"SendItemPush")]
  1963. public partial class SendItemPush : global::ProtoBuf.IExtensible
  1964. {
  1965. public SendItemPush() {}
  1966. private string _itemCode;
  1967. /// <summary>
  1968. /// 好友物品code
  1969. /// </summary>
  1970. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"itemCode", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1971. public string itemCode
  1972. {
  1973. get { return _itemCode; }
  1974. set { _itemCode = value; }
  1975. }
  1976. private string _sendPlayerName = "";
  1977. /// <summary>
  1978. /// 发送者名字
  1979. /// </summary>
  1980. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"sendPlayerName", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1981. [global::System.ComponentModel.DefaultValue("")]
  1982. public string sendPlayerName
  1983. {
  1984. get { return _sendPlayerName; }
  1985. set { _sendPlayerName = value; }
  1986. }
  1987. private global::ProtoBuf.IExtension extensionObject;
  1988. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1989. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1990. }
  1991. //---------------------------------------------------------------------------------------
  1992. /// <summary>
  1993. /// 好感度倾慕值更新推送(好感度给双方推送,倾慕值给发送者推送)
  1994. /// </summary>
  1995. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"FavorabilityOrAdoreUpdatePush")]
  1996. public partial class FavorabilityOrAdoreUpdatePush : global::ProtoBuf.IExtensible
  1997. {
  1998. public FavorabilityOrAdoreUpdatePush() {}
  1999. private string _friendId;
  2000. /// <summary>
  2001. /// 好友id
  2002. /// </summary>
  2003. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"friendId", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2004. public string friendId
  2005. {
  2006. get { return _friendId; }
  2007. set { _friendId = value; }
  2008. }
  2009. private int _favorability = default(int);
  2010. /// <summary>
  2011. /// 好感度值
  2012. /// </summary>
  2013. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"favorability", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  2014. [global::System.ComponentModel.DefaultValue(default(int))]
  2015. public int favorability
  2016. {
  2017. get { return _favorability; }
  2018. set { _favorability = value; }
  2019. }
  2020. private int _adore = default(int);
  2021. /// <summary>
  2022. /// 倾慕值
  2023. /// </summary>
  2024. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"adore", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  2025. [global::System.ComponentModel.DefaultValue(default(int))]
  2026. public int adore
  2027. {
  2028. get { return _adore; }
  2029. set { _adore = value; }
  2030. }
  2031. private global::ProtoBuf.IExtension extensionObject;
  2032. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  2033. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  2034. }
  2035. //---------------------------------------------------------------------------------------
  2036. /// <summary>
  2037. /// 好友上下线推送
  2038. /// </summary>
  2039. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"FriendOnlineOrOfflinePush")]
  2040. public partial class FriendOnlineOrOfflinePush : global::ProtoBuf.IExtensible
  2041. {
  2042. public FriendOnlineOrOfflinePush() {}
  2043. private string _friendId;
  2044. /// <summary>
  2045. /// 好友id
  2046. /// </summary>
  2047. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"friendId", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2048. public string friendId
  2049. {
  2050. get { return _friendId; }
  2051. set { _friendId = value; }
  2052. }
  2053. private int _isOnline = default(int);
  2054. /// <summary>
  2055. /// 是否上线(0:下线)
  2056. /// </summary>
  2057. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"isOnline", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  2058. [global::System.ComponentModel.DefaultValue(default(int))]
  2059. public int isOnline
  2060. {
  2061. get { return _isOnline; }
  2062. set { _isOnline = value; }
  2063. }
  2064. private global::ProtoBuf.IExtension extensionObject;
  2065. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  2066. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  2067. }
  2068. }