_guildHandler.cs 96 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700
  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. // * 作者= jjr
  11. // * 创建时间= 2017-04-26
  12. // * 用途= 公会处理器
  13. // ***************************************************************************
  14. // Generated from: guildHandler.proto
  15. // Note: requires additional types generated from: item.proto
  16. // Note: requires additional types generated from: common.proto
  17. namespace pomelo.area
  18. {
  19. //---------------------------------------------------------------------------------------
  20. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"CreateGuildRequest")]
  21. public partial class CreateGuildRequest : global::ProtoBuf.IExtensible
  22. {
  23. public CreateGuildRequest() {}
  24. private string _c2s_icon = "";
  25. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"c2s_icon", DataFormat = global::ProtoBuf.DataFormat.Default)]
  26. [global::System.ComponentModel.DefaultValue("")]
  27. public string c2s_icon
  28. {
  29. get { return _c2s_icon; }
  30. set { _c2s_icon = value; }
  31. }
  32. private string _c2s_name = "";
  33. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"c2s_name", DataFormat = global::ProtoBuf.DataFormat.Default)]
  34. [global::System.ComponentModel.DefaultValue("")]
  35. public string c2s_name
  36. {
  37. get { return _c2s_name; }
  38. set { _c2s_name = value; }
  39. }
  40. private string _c2s_qqGroup = "";
  41. /// <summary>
  42. /// qq群
  43. /// </summary>
  44. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"c2s_qqGroup", DataFormat = global::ProtoBuf.DataFormat.Default)]
  45. [global::System.ComponentModel.DefaultValue("")]
  46. public string c2s_qqGroup
  47. {
  48. get { return _c2s_qqGroup; }
  49. set { _c2s_qqGroup = value; }
  50. }
  51. private global::ProtoBuf.IExtension extensionObject;
  52. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  53. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  54. }
  55. //---------------------------------------------------------------------------------------
  56. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GetGuildListRequest")]
  57. public partial class GetGuildListRequest : global::ProtoBuf.IExtensible
  58. {
  59. public GetGuildListRequest() {}
  60. private string _c2s_name = "";
  61. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"c2s_name", DataFormat = global::ProtoBuf.DataFormat.Default)]
  62. [global::System.ComponentModel.DefaultValue("")]
  63. public string c2s_name
  64. {
  65. get { return _c2s_name; }
  66. set { _c2s_name = value; }
  67. }
  68. private global::ProtoBuf.IExtension extensionObject;
  69. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  70. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  71. }
  72. //---------------------------------------------------------------------------------------
  73. /// <summary>
  74. /// 申请加入公会
  75. /// </summary>
  76. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"JoinGuildRequest")]
  77. public partial class JoinGuildRequest : global::ProtoBuf.IExtensible
  78. {
  79. public JoinGuildRequest() {}
  80. private string _c2s_guildId = "";
  81. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"c2s_guildId", DataFormat = global::ProtoBuf.DataFormat.Default)]
  82. [global::System.ComponentModel.DefaultValue("")]
  83. public string c2s_guildId
  84. {
  85. get { return _c2s_guildId; }
  86. set { _c2s_guildId = value; }
  87. }
  88. private global::ProtoBuf.IExtension extensionObject;
  89. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  90. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  91. }
  92. //---------------------------------------------------------------------------------------
  93. /// <summary>
  94. /// 通过对方玩家id,加入对方的公会
  95. /// </summary>
  96. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"JoinGuildOfPlayerRequest")]
  97. public partial class JoinGuildOfPlayerRequest : global::ProtoBuf.IExtensible
  98. {
  99. public JoinGuildOfPlayerRequest() {}
  100. private string _c2s_playerId = "";
  101. /// <summary>
  102. /// 玩家ID
  103. /// </summary>
  104. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"c2s_playerId", DataFormat = global::ProtoBuf.DataFormat.Default)]
  105. [global::System.ComponentModel.DefaultValue("")]
  106. public string c2s_playerId
  107. {
  108. get { return _c2s_playerId; }
  109. set { _c2s_playerId = value; }
  110. }
  111. private global::ProtoBuf.IExtension extensionObject;
  112. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  113. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  114. }
  115. //---------------------------------------------------------------------------------------
  116. /// <summary>
  117. /// 邀请加入公会
  118. /// </summary>
  119. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"InvitePlayerJoinMyGuildRequest")]
  120. public partial class InvitePlayerJoinMyGuildRequest : global::ProtoBuf.IExtensible
  121. {
  122. public InvitePlayerJoinMyGuildRequest() {}
  123. private string _c2s_playerId = "";
  124. /// <summary>
  125. /// 玩家ID
  126. /// </summary>
  127. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"c2s_playerId", DataFormat = global::ProtoBuf.DataFormat.Default)]
  128. [global::System.ComponentModel.DefaultValue("")]
  129. public string c2s_playerId
  130. {
  131. get { return _c2s_playerId; }
  132. set { _c2s_playerId = value; }
  133. }
  134. private global::ProtoBuf.IExtension extensionObject;
  135. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  136. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  137. }
  138. //---------------------------------------------------------------------------------------
  139. /// <summary>
  140. /// 同意或拒绝邀请
  141. /// </summary>
  142. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"AgreeOrRefuseInviteRequest")]
  143. public partial class AgreeOrRefuseInviteRequest : global::ProtoBuf.IExtensible
  144. {
  145. public AgreeOrRefuseInviteRequest() {}
  146. private int _c2s_isAgree;
  147. /// <summary>
  148. /// 0:拒绝 1:同意
  149. /// </summary>
  150. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"c2s_isAgree", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  151. public int c2s_isAgree
  152. {
  153. get { return _c2s_isAgree; }
  154. set { _c2s_isAgree = value; }
  155. }
  156. private string _c2s_inviteId;
  157. /// <summary>
  158. /// 邀请者ID
  159. /// </summary>
  160. [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"c2s_inviteId", DataFormat = global::ProtoBuf.DataFormat.Default)]
  161. public string c2s_inviteId
  162. {
  163. get { return _c2s_inviteId; }
  164. set { _c2s_inviteId = value; }
  165. }
  166. private string _c2s_guildId;
  167. /// <summary>
  168. /// 邀请加入的公会Id
  169. /// </summary>
  170. [global::ProtoBuf.ProtoMember(3, IsRequired = true, Name=@"c2s_guildId", DataFormat = global::ProtoBuf.DataFormat.Default)]
  171. public string c2s_guildId
  172. {
  173. get { return _c2s_guildId; }
  174. set { _c2s_guildId = value; }
  175. }
  176. private global::ProtoBuf.IExtension extensionObject;
  177. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  178. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  179. }
  180. //---------------------------------------------------------------------------------------
  181. /// <summary>
  182. /// 处理申请
  183. /// </summary>
  184. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"DealApplyRequest")]
  185. public partial class DealApplyRequest : global::ProtoBuf.IExtensible
  186. {
  187. public DealApplyRequest() {}
  188. private string _c2s_applyId = "";
  189. /// <summary>
  190. /// 全部一键处理可不填
  191. /// </summary>
  192. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"c2s_applyId", DataFormat = global::ProtoBuf.DataFormat.Default)]
  193. [global::System.ComponentModel.DefaultValue("")]
  194. public string c2s_applyId
  195. {
  196. get { return _c2s_applyId; }
  197. set { _c2s_applyId = value; }
  198. }
  199. private int _c2s_operate = default(int);
  200. /// <summary>
  201. /// 审核结果 0:拒绝 1:同意 2:全部拒绝 3:全部同意
  202. /// </summary>
  203. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"c2s_operate", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  204. [global::System.ComponentModel.DefaultValue(default(int))]
  205. public int c2s_operate
  206. {
  207. get { return _c2s_operate; }
  208. set { _c2s_operate = value; }
  209. }
  210. private global::ProtoBuf.IExtension extensionObject;
  211. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  212. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  213. }
  214. //---------------------------------------------------------------------------------------
  215. /// <summary>
  216. /// 我的公会信息
  217. /// </summary>
  218. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GetMyGuildInfoRequest")]
  219. public partial class GetMyGuildInfoRequest : global::ProtoBuf.IExtensible
  220. {
  221. public GetMyGuildInfoRequest() {}
  222. private global::ProtoBuf.IExtension extensionObject;
  223. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  224. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  225. }
  226. //---------------------------------------------------------------------------------------
  227. /// <summary>
  228. /// 成员列表
  229. /// </summary>
  230. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GetMyGuildMembersRequest")]
  231. public partial class GetMyGuildMembersRequest : global::ProtoBuf.IExtensible
  232. {
  233. public GetMyGuildMembersRequest() {}
  234. private global::ProtoBuf.IExtension extensionObject;
  235. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  236. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  237. }
  238. //---------------------------------------------------------------------------------------
  239. /// <summary>
  240. /// 申请列表
  241. /// </summary>
  242. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GetApplyListRequest")]
  243. public partial class GetApplyListRequest : global::ProtoBuf.IExtensible
  244. {
  245. public GetApplyListRequest() {}
  246. private global::ProtoBuf.IExtension extensionObject;
  247. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  248. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  249. }
  250. //---------------------------------------------------------------------------------------
  251. /// <summary>
  252. /// 设置公会
  253. /// </summary>
  254. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"SetGuildInfoRequest")]
  255. public partial class SetGuildInfoRequest : global::ProtoBuf.IExtensible
  256. {
  257. public SetGuildInfoRequest() {}
  258. private int _entryLevel = default(int);
  259. /// <summary>
  260. /// 进入等级
  261. /// </summary>
  262. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"entryLevel", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  263. [global::System.ComponentModel.DefaultValue(default(int))]
  264. public int entryLevel
  265. {
  266. get { return _entryLevel; }
  267. set { _entryLevel = value; }
  268. }
  269. private int _guildMode = default(int);
  270. /// <summary>
  271. /// 审核模式 参考枚举GuildMode
  272. /// </summary>
  273. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"guildMode", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  274. [global::System.ComponentModel.DefaultValue(default(int))]
  275. public int guildMode
  276. {
  277. get { return _guildMode; }
  278. set { _guildMode = value; }
  279. }
  280. private int _entryUpLevel = default(int);
  281. /// <summary>
  282. /// 进入阶级
  283. /// </summary>
  284. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"entryUpLevel", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  285. [global::System.ComponentModel.DefaultValue(default(int))]
  286. public int entryUpLevel
  287. {
  288. get { return _entryUpLevel; }
  289. set { _entryUpLevel = value; }
  290. }
  291. private global::ProtoBuf.IExtension extensionObject;
  292. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  293. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  294. }
  295. //---------------------------------------------------------------------------------------
  296. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"SetGuildQQGroupRequest")]
  297. public partial class SetGuildQQGroupRequest : global::ProtoBuf.IExtensible
  298. {
  299. public SetGuildQQGroupRequest() {}
  300. private string _qqGroup = "";
  301. /// <summary>
  302. /// qq群
  303. /// </summary>
  304. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"qqGroup", DataFormat = global::ProtoBuf.DataFormat.Default)]
  305. [global::System.ComponentModel.DefaultValue("")]
  306. public string qqGroup
  307. {
  308. get { return _qqGroup; }
  309. set { _qqGroup = value; }
  310. }
  311. private global::ProtoBuf.IExtension extensionObject;
  312. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  313. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  314. }
  315. //---------------------------------------------------------------------------------------
  316. /// <summary>
  317. /// 退出公会
  318. /// </summary>
  319. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"ExitGuildRequest")]
  320. public partial class ExitGuildRequest : global::ProtoBuf.IExtensible
  321. {
  322. public ExitGuildRequest() {}
  323. private global::ProtoBuf.IExtension extensionObject;
  324. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  325. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  326. }
  327. //---------------------------------------------------------------------------------------
  328. /// <summary>
  329. /// 踢人
  330. /// </summary>
  331. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"KickMemberRequest")]
  332. public partial class KickMemberRequest : global::ProtoBuf.IExtensible
  333. {
  334. public KickMemberRequest() {}
  335. private string _memberId = "";
  336. /// <summary>
  337. /// 成员id
  338. /// </summary>
  339. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"memberId", DataFormat = global::ProtoBuf.DataFormat.Default)]
  340. [global::System.ComponentModel.DefaultValue("")]
  341. public string memberId
  342. {
  343. get { return _memberId; }
  344. set { _memberId = value; }
  345. }
  346. private global::ProtoBuf.IExtension extensionObject;
  347. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  348. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  349. }
  350. //---------------------------------------------------------------------------------------
  351. /// <summary>
  352. /// 升级
  353. /// </summary>
  354. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"UpgradeGuildLevelRequest")]
  355. public partial class UpgradeGuildLevelRequest : global::ProtoBuf.IExtensible
  356. {
  357. public UpgradeGuildLevelRequest() {}
  358. private global::ProtoBuf.IExtension extensionObject;
  359. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  360. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  361. }
  362. //---------------------------------------------------------------------------------------
  363. /// <summary>
  364. /// 修改公告
  365. /// </summary>
  366. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"ChangeGuildNoticeRequest")]
  367. public partial class ChangeGuildNoticeRequest : global::ProtoBuf.IExtensible
  368. {
  369. public ChangeGuildNoticeRequest() {}
  370. private string _notice = "";
  371. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"notice", DataFormat = global::ProtoBuf.DataFormat.Default)]
  372. [global::System.ComponentModel.DefaultValue("")]
  373. public string notice
  374. {
  375. get { return _notice; }
  376. set { _notice = value; }
  377. }
  378. private global::ProtoBuf.IExtension extensionObject;
  379. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  380. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  381. }
  382. //---------------------------------------------------------------------------------------
  383. /// <summary>
  384. /// 修改公会名字
  385. /// </summary>
  386. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"ChangeGuildNameRequest")]
  387. public partial class ChangeGuildNameRequest : global::ProtoBuf.IExtensible
  388. {
  389. public ChangeGuildNameRequest() {}
  390. private string _name = "";
  391. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"name", DataFormat = global::ProtoBuf.DataFormat.Default)]
  392. [global::System.ComponentModel.DefaultValue("")]
  393. public string name
  394. {
  395. get { return _name; }
  396. set { _name = value; }
  397. }
  398. private global::ProtoBuf.IExtension extensionObject;
  399. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  400. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  401. }
  402. //---------------------------------------------------------------------------------------
  403. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"OfficeName")]
  404. public partial class OfficeName : global::ProtoBuf.IExtensible
  405. {
  406. public OfficeName() {}
  407. private int _job = default(int);
  408. /// <summary>
  409. /// 官职 参考GuildJob枚举
  410. /// </summary>
  411. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"job", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  412. [global::System.ComponentModel.DefaultValue(default(int))]
  413. public int job
  414. {
  415. get { return _job; }
  416. set { _job = value; }
  417. }
  418. private string _name = "";
  419. /// <summary>
  420. /// 官职名称
  421. /// </summary>
  422. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"name", DataFormat = global::ProtoBuf.DataFormat.Default)]
  423. [global::System.ComponentModel.DefaultValue("")]
  424. public string name
  425. {
  426. get { return _name; }
  427. set { _name = value; }
  428. }
  429. private global::ProtoBuf.IExtension extensionObject;
  430. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  431. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  432. }
  433. //---------------------------------------------------------------------------------------
  434. /// <summary>
  435. /// 修改官职名称
  436. /// </summary>
  437. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"ChangeOfficeNameRequest")]
  438. public partial class ChangeOfficeNameRequest : global::ProtoBuf.IExtensible
  439. {
  440. public ChangeOfficeNameRequest() {}
  441. private readonly global::System.Collections.Generic.List<pomelo.area.OfficeName> _officeNames = new global::System.Collections.Generic.List<pomelo.area.OfficeName>();
  442. [global::ProtoBuf.ProtoMember(1, Name=@"officeNames", DataFormat = global::ProtoBuf.DataFormat.Default)]
  443. public global::System.Collections.Generic.List<pomelo.area.OfficeName> officeNames
  444. {
  445. get { return _officeNames; }
  446. }
  447. private global::ProtoBuf.IExtension extensionObject;
  448. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  449. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  450. }
  451. //---------------------------------------------------------------------------------------
  452. /// <summary>
  453. /// 捐献
  454. /// </summary>
  455. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"ContributeToGuildRequest")]
  456. public partial class ContributeToGuildRequest : global::ProtoBuf.IExtensible
  457. {
  458. public ContributeToGuildRequest() {}
  459. private int _type = default(int);
  460. /// <summary>
  461. /// 捐献类型
  462. /// </summary>
  463. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"type", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  464. [global::System.ComponentModel.DefaultValue(default(int))]
  465. public int type
  466. {
  467. get { return _type; }
  468. set { _type = value; }
  469. }
  470. private int _times = default(int);
  471. /// <summary>
  472. /// 捐献次数
  473. /// </summary>
  474. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"times", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  475. [global::System.ComponentModel.DefaultValue(default(int))]
  476. public int times
  477. {
  478. get { return _times; }
  479. set { _times = value; }
  480. }
  481. private global::ProtoBuf.IExtension extensionObject;
  482. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  483. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  484. }
  485. //---------------------------------------------------------------------------------------
  486. /// <summary>
  487. /// 设置官职
  488. /// </summary>
  489. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"SetMemberJobRequest")]
  490. public partial class SetMemberJobRequest : global::ProtoBuf.IExtensible
  491. {
  492. public SetMemberJobRequest() {}
  493. private string _memberId = "";
  494. /// <summary>
  495. /// 成员id
  496. /// </summary>
  497. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"memberId", DataFormat = global::ProtoBuf.DataFormat.Default)]
  498. [global::System.ComponentModel.DefaultValue("")]
  499. public string memberId
  500. {
  501. get { return _memberId; }
  502. set { _memberId = value; }
  503. }
  504. private int _job = default(int);
  505. /// <summary>
  506. /// 参考GuildJob
  507. /// </summary>
  508. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"job", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  509. [global::System.ComponentModel.DefaultValue(default(int))]
  510. public int job
  511. {
  512. get { return _job; }
  513. set { _job = value; }
  514. }
  515. private global::ProtoBuf.IExtension extensionObject;
  516. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  517. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  518. }
  519. //---------------------------------------------------------------------------------------
  520. /// <summary>
  521. /// 转让会长
  522. /// </summary>
  523. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"TransferPresidentRequest")]
  524. public partial class TransferPresidentRequest : global::ProtoBuf.IExtensible
  525. {
  526. public TransferPresidentRequest() {}
  527. private string _memberId = "";
  528. /// <summary>
  529. /// 新会长的id
  530. /// </summary>
  531. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"memberId", DataFormat = global::ProtoBuf.DataFormat.Default)]
  532. [global::System.ComponentModel.DefaultValue("")]
  533. public string memberId
  534. {
  535. get { return _memberId; }
  536. set { _memberId = value; }
  537. }
  538. private global::ProtoBuf.IExtension extensionObject;
  539. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  540. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  541. }
  542. //---------------------------------------------------------------------------------------
  543. /// <summary>
  544. /// *****************客户端请求结束*********************** 结构定义
  545. /// </summary>
  546. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GuildBaseInfo")]
  547. public partial class GuildBaseInfo : global::ProtoBuf.IExtensible
  548. {
  549. public GuildBaseInfo() {}
  550. private string _guildId = "";
  551. /// <summary>
  552. /// 公会id
  553. /// </summary>
  554. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"guildId", DataFormat = global::ProtoBuf.DataFormat.Default)]
  555. [global::System.ComponentModel.DefaultValue("")]
  556. public string guildId
  557. {
  558. get { return _guildId; }
  559. set { _guildId = value; }
  560. }
  561. private string _name = "";
  562. /// <summary>
  563. /// 公会名字
  564. /// </summary>
  565. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"name", DataFormat = global::ProtoBuf.DataFormat.Default)]
  566. [global::System.ComponentModel.DefaultValue("")]
  567. public string name
  568. {
  569. get { return _name; }
  570. set { _name = value; }
  571. }
  572. private int _level = default(int);
  573. /// <summary>
  574. /// 公会等级
  575. /// </summary>
  576. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"level", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  577. [global::System.ComponentModel.DefaultValue(default(int))]
  578. public int level
  579. {
  580. get { return _level; }
  581. set { _level = value; }
  582. }
  583. private string _presidentId = "";
  584. /// <summary>
  585. /// 会长id
  586. /// </summary>
  587. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"presidentId", DataFormat = global::ProtoBuf.DataFormat.Default)]
  588. [global::System.ComponentModel.DefaultValue("")]
  589. public string presidentId
  590. {
  591. get { return _presidentId; }
  592. set { _presidentId = value; }
  593. }
  594. private string _presidentName = "";
  595. /// <summary>
  596. /// 会长名字
  597. /// </summary>
  598. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"presidentName", DataFormat = global::ProtoBuf.DataFormat.Default)]
  599. [global::System.ComponentModel.DefaultValue("")]
  600. public string presidentName
  601. {
  602. get { return _presidentName; }
  603. set { _presidentName = value; }
  604. }
  605. private int _memberNum = default(int);
  606. /// <summary>
  607. /// 成员数量
  608. /// </summary>
  609. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"memberNum", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  610. [global::System.ComponentModel.DefaultValue(default(int))]
  611. public int memberNum
  612. {
  613. get { return _memberNum; }
  614. set { _memberNum = value; }
  615. }
  616. private int _memberMax = default(int);
  617. /// <summary>
  618. /// 成员最大数量
  619. /// </summary>
  620. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"memberMax", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  621. [global::System.ComponentModel.DefaultValue(default(int))]
  622. public int memberMax
  623. {
  624. get { return _memberMax; }
  625. set { _memberMax = value; }
  626. }
  627. private int _entryLevel = default(int);
  628. /// <summary>
  629. /// 加入等级条件
  630. /// </summary>
  631. [global::ProtoBuf.ProtoMember(8, IsRequired = false, Name=@"entryLevel", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  632. [global::System.ComponentModel.DefaultValue(default(int))]
  633. public int entryLevel
  634. {
  635. get { return _entryLevel; }
  636. set { _entryLevel = value; }
  637. }
  638. private int _guildMode = default(int);
  639. /// <summary>
  640. /// 公会审核模式 参考枚举GuildMode
  641. /// </summary>
  642. [global::ProtoBuf.ProtoMember(9, IsRequired = false, Name=@"guildMode", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  643. [global::System.ComponentModel.DefaultValue(default(int))]
  644. public int guildMode
  645. {
  646. get { return _guildMode; }
  647. set { _guildMode = value; }
  648. }
  649. private string _guildIcon = "";
  650. /// <summary>
  651. /// 公会图标
  652. /// </summary>
  653. [global::ProtoBuf.ProtoMember(10, IsRequired = false, Name=@"guildIcon", DataFormat = global::ProtoBuf.DataFormat.Default)]
  654. [global::System.ComponentModel.DefaultValue("")]
  655. public string guildIcon
  656. {
  657. get { return _guildIcon; }
  658. set { _guildIcon = value; }
  659. }
  660. private int _presidentPro = default(int);
  661. /// <summary>
  662. /// 会长职业
  663. /// </summary>
  664. [global::ProtoBuf.ProtoMember(11, IsRequired = false, Name=@"presidentPro", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  665. [global::System.ComponentModel.DefaultValue(default(int))]
  666. public int presidentPro
  667. {
  668. get { return _presidentPro; }
  669. set { _presidentPro = value; }
  670. }
  671. private int _presidentLevel = default(int);
  672. /// <summary>
  673. /// 会长等级
  674. /// </summary>
  675. [global::ProtoBuf.ProtoMember(12, IsRequired = false, Name=@"presidentLevel", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  676. [global::System.ComponentModel.DefaultValue(default(int))]
  677. public int presidentLevel
  678. {
  679. get { return _presidentLevel; }
  680. set { _presidentLevel = value; }
  681. }
  682. private int _entryUpLevel = default(int);
  683. /// <summary>
  684. /// 加入阶级条件
  685. /// </summary>
  686. [global::ProtoBuf.ProtoMember(13, IsRequired = false, Name=@"entryUpLevel", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  687. [global::System.ComponentModel.DefaultValue(default(int))]
  688. public int entryUpLevel
  689. {
  690. get { return _entryUpLevel; }
  691. set { _entryUpLevel = value; }
  692. }
  693. private string _createTime = "";
  694. /// <summary>
  695. /// 创建时间
  696. /// </summary>
  697. [global::ProtoBuf.ProtoMember(14, IsRequired = false, Name=@"createTime", DataFormat = global::ProtoBuf.DataFormat.Default)]
  698. [global::System.ComponentModel.DefaultValue("")]
  699. public string createTime
  700. {
  701. get { return _createTime; }
  702. set { _createTime = value; }
  703. }
  704. private global::ProtoBuf.IExtension extensionObject;
  705. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  706. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  707. }
  708. //---------------------------------------------------------------------------------------
  709. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GuildInfo")]
  710. public partial class GuildInfo : global::ProtoBuf.IExtensible
  711. {
  712. public GuildInfo() {}
  713. private pomelo.area.GuildBaseInfo _baseInfo = null;
  714. /// <summary>
  715. /// 基础信息
  716. /// </summary>
  717. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"baseInfo", DataFormat = global::ProtoBuf.DataFormat.Default)]
  718. [global::System.ComponentModel.DefaultValue(null)]
  719. public pomelo.area.GuildBaseInfo baseInfo
  720. {
  721. get { return _baseInfo; }
  722. set { _baseInfo = value; }
  723. }
  724. private int _applyState = default(int);
  725. /// <summary>
  726. /// 0:未申请 1:已申请
  727. /// </summary>
  728. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"applyState", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  729. [global::System.ComponentModel.DefaultValue(default(int))]
  730. public int applyState
  731. {
  732. get { return _applyState; }
  733. set { _applyState = value; }
  734. }
  735. private global::ProtoBuf.IExtension extensionObject;
  736. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  737. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  738. }
  739. //---------------------------------------------------------------------------------------
  740. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"ContributeTimesInfo")]
  741. public partial class ContributeTimesInfo : global::ProtoBuf.IExtensible
  742. {
  743. public ContributeTimesInfo() {}
  744. private int _type = default(int);
  745. /// <summary>
  746. /// 捐献类型(参考配置)1:金币捐献 2:宝箱捐献
  747. /// </summary>
  748. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"type", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  749. [global::System.ComponentModel.DefaultValue(default(int))]
  750. public int type
  751. {
  752. get { return _type; }
  753. set { _type = value; }
  754. }
  755. private int _times = default(int);
  756. /// <summary>
  757. /// 今日捐献次数
  758. /// </summary>
  759. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"times", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  760. [global::System.ComponentModel.DefaultValue(default(int))]
  761. public int times
  762. {
  763. get { return _times; }
  764. set { _times = value; }
  765. }
  766. private int _maxTimes = default(int);
  767. /// <summary>
  768. /// 最大捐献次数
  769. /// </summary>
  770. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"maxTimes", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  771. [global::System.ComponentModel.DefaultValue(default(int))]
  772. public int maxTimes
  773. {
  774. get { return _maxTimes; }
  775. set { _maxTimes = value; }
  776. }
  777. private global::ProtoBuf.IExtension extensionObject;
  778. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  779. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  780. }
  781. //---------------------------------------------------------------------------------------
  782. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"MyContributeInfo")]
  783. public partial class MyContributeInfo : global::ProtoBuf.IExtensible
  784. {
  785. public MyContributeInfo() {}
  786. private int _currentContribute = default(int);
  787. /// <summary>
  788. /// 当前贡献值
  789. /// </summary>
  790. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"currentContribute", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  791. [global::System.ComponentModel.DefaultValue(default(int))]
  792. public int currentContribute
  793. {
  794. get { return _currentContribute; }
  795. set { _currentContribute = value; }
  796. }
  797. private int _totalContribute = default(int);
  798. /// <summary>
  799. /// 当前公会总贡献值
  800. /// </summary>
  801. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"totalContribute", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  802. [global::System.ComponentModel.DefaultValue(default(int))]
  803. public int totalContribute
  804. {
  805. get { return _totalContribute; }
  806. set { _totalContribute = value; }
  807. }
  808. private readonly global::System.Collections.Generic.List<pomelo.area.ContributeTimesInfo> _timesList = new global::System.Collections.Generic.List<pomelo.area.ContributeTimesInfo>();
  809. /// <summary>
  810. /// 捐献次数
  811. /// </summary>
  812. [global::ProtoBuf.ProtoMember(3, Name=@"timesList", DataFormat = global::ProtoBuf.DataFormat.Default)]
  813. public global::System.Collections.Generic.List<pomelo.area.ContributeTimesInfo> timesList
  814. {
  815. get { return _timesList; }
  816. }
  817. private global::ProtoBuf.IExtension extensionObject;
  818. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  819. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  820. }
  821. //---------------------------------------------------------------------------------------
  822. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GuildFunBossInfo")]
  823. public partial class GuildFunBossInfo : global::ProtoBuf.IExtensible
  824. {
  825. public GuildFunBossInfo() {}
  826. private int _type = default(int);
  827. /// <summary>
  828. /// 类型
  829. /// </summary>
  830. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"type", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  831. [global::System.ComponentModel.DefaultValue(default(int))]
  832. public int type
  833. {
  834. get { return _type; }
  835. set { _type = value; }
  836. }
  837. private bool _isDead = default(bool);
  838. /// <summary>
  839. /// 是否死亡
  840. /// </summary>
  841. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"isDead", DataFormat = global::ProtoBuf.DataFormat.Default)]
  842. [global::System.ComponentModel.DefaultValue(default(bool))]
  843. public bool isDead
  844. {
  845. get { return _isDead; }
  846. set { _isDead = value; }
  847. }
  848. private global::ProtoBuf.IExtension extensionObject;
  849. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  850. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  851. }
  852. //---------------------------------------------------------------------------------------
  853. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"MyGuildInfo")]
  854. public partial class MyGuildInfo : global::ProtoBuf.IExtensible
  855. {
  856. public MyGuildInfo() {}
  857. private pomelo.area.GuildBaseInfo _baseInfo = null;
  858. /// <summary>
  859. /// 公会基础信息
  860. /// </summary>
  861. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"baseInfo", DataFormat = global::ProtoBuf.DataFormat.Default)]
  862. [global::System.ComponentModel.DefaultValue(null)]
  863. public pomelo.area.GuildBaseInfo baseInfo
  864. {
  865. get { return _baseInfo; }
  866. set { _baseInfo = value; }
  867. }
  868. private string _notice = "";
  869. /// <summary>
  870. /// 公会公告
  871. /// </summary>
  872. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"notice", DataFormat = global::ProtoBuf.DataFormat.Default)]
  873. [global::System.ComponentModel.DefaultValue("")]
  874. public string notice
  875. {
  876. get { return _notice; }
  877. set { _notice = value; }
  878. }
  879. private int _fund = default(int);
  880. /// <summary>
  881. /// 工会资金
  882. /// </summary>
  883. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"fund", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  884. [global::System.ComponentModel.DefaultValue(default(int))]
  885. public int fund
  886. {
  887. get { return _fund; }
  888. set { _fund = value; }
  889. }
  890. private string _qqGroup = "";
  891. /// <summary>
  892. /// qq群
  893. /// </summary>
  894. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"qqGroup", DataFormat = global::ProtoBuf.DataFormat.Default)]
  895. [global::System.ComponentModel.DefaultValue("")]
  896. public string qqGroup
  897. {
  898. get { return _qqGroup; }
  899. set { _qqGroup = value; }
  900. }
  901. private pomelo.area.MyContributeInfo _myInfo = null;
  902. /// <summary>
  903. /// 我的捐献信息
  904. /// </summary>
  905. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"myInfo", DataFormat = global::ProtoBuf.DataFormat.Default)]
  906. [global::System.ComponentModel.DefaultValue(null)]
  907. public pomelo.area.MyContributeInfo myInfo
  908. {
  909. get { return _myInfo; }
  910. set { _myInfo = value; }
  911. }
  912. private int _changeNamePassedDay = default(int);
  913. /// <summary>
  914. /// 上次更名几天前
  915. /// </summary>
  916. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"changeNamePassedDay", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  917. [global::System.ComponentModel.DefaultValue(default(int))]
  918. public int changeNamePassedDay
  919. {
  920. get { return _changeNamePassedDay; }
  921. set { _changeNamePassedDay = value; }
  922. }
  923. private readonly global::System.Collections.Generic.List<pomelo.area.OfficeName> _officeNames = new global::System.Collections.Generic.List<pomelo.area.OfficeName>();
  924. /// <summary>
  925. /// 官职名称
  926. /// </summary>
  927. [global::ProtoBuf.ProtoMember(7, Name=@"officeNames", DataFormat = global::ProtoBuf.DataFormat.Default)]
  928. public global::System.Collections.Generic.List<pomelo.area.OfficeName> officeNames
  929. {
  930. get { return _officeNames; }
  931. }
  932. private int _exp = default(int);
  933. /// <summary>
  934. /// 公会威望
  935. /// </summary>
  936. [global::ProtoBuf.ProtoMember(8, IsRequired = false, Name=@"exp", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  937. [global::System.ComponentModel.DefaultValue(default(int))]
  938. public int exp
  939. {
  940. get { return _exp; }
  941. set { _exp = value; }
  942. }
  943. private int _ceId = default(int);
  944. /// <summary>
  945. /// 仙器id
  946. /// </summary>
  947. [global::ProtoBuf.ProtoMember(9, IsRequired = false, Name=@"ceId", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  948. [global::System.ComponentModel.DefaultValue(default(int))]
  949. public int ceId
  950. {
  951. get { return _ceId; }
  952. set { _ceId = value; }
  953. }
  954. private int _ceLv = default(int);
  955. /// <summary>
  956. /// 仙器等级
  957. /// </summary>
  958. [global::ProtoBuf.ProtoMember(10, IsRequired = false, Name=@"ceLv", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  959. [global::System.ComponentModel.DefaultValue(default(int))]
  960. public int ceLv
  961. {
  962. get { return _ceLv; }
  963. set { _ceLv = value; }
  964. }
  965. private readonly global::System.Collections.Generic.List<pomelo.area.GuildFunBossInfo> _funcBossInfos = new global::System.Collections.Generic.List<pomelo.area.GuildFunBossInfo>();
  966. /// <summary>
  967. /// 仙盟功能boss
  968. /// </summary>
  969. [global::ProtoBuf.ProtoMember(11, Name=@"funcBossInfos", DataFormat = global::ProtoBuf.DataFormat.Default)]
  970. public global::System.Collections.Generic.List<pomelo.area.GuildFunBossInfo> funcBossInfos
  971. {
  972. get { return _funcBossInfos; }
  973. }
  974. private global::ProtoBuf.IExtension extensionObject;
  975. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  976. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  977. }
  978. //---------------------------------------------------------------------------------------
  979. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"MemberInfo")]
  980. public partial class MemberInfo : global::ProtoBuf.IExtensible
  981. {
  982. public MemberInfo() {}
  983. private string _playerId = "";
  984. /// <summary>
  985. /// 成员id
  986. /// </summary>
  987. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"playerId", DataFormat = global::ProtoBuf.DataFormat.Default)]
  988. [global::System.ComponentModel.DefaultValue("")]
  989. public string playerId
  990. {
  991. get { return _playerId; }
  992. set { _playerId = value; }
  993. }
  994. private int _pro = default(int);
  995. /// <summary>
  996. /// 职业
  997. /// </summary>
  998. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"pro", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  999. [global::System.ComponentModel.DefaultValue(default(int))]
  1000. public int pro
  1001. {
  1002. get { return _pro; }
  1003. set { _pro = value; }
  1004. }
  1005. private string _name = "";
  1006. /// <summary>
  1007. /// 名字
  1008. /// </summary>
  1009. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"name", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1010. [global::System.ComponentModel.DefaultValue("")]
  1011. public string name
  1012. {
  1013. get { return _name; }
  1014. set { _name = value; }
  1015. }
  1016. private int _level = default(int);
  1017. /// <summary>
  1018. /// 等级
  1019. /// </summary>
  1020. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"level", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1021. [global::System.ComponentModel.DefaultValue(default(int))]
  1022. public int level
  1023. {
  1024. get { return _level; }
  1025. set { _level = value; }
  1026. }
  1027. private int _upLevel = default(int);
  1028. /// <summary>
  1029. /// 进阶等级
  1030. /// </summary>
  1031. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"upLevel", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1032. [global::System.ComponentModel.DefaultValue(default(int))]
  1033. public int upLevel
  1034. {
  1035. get { return _upLevel; }
  1036. set { _upLevel = value; }
  1037. }
  1038. private int _job = default(int);
  1039. /// <summary>
  1040. /// 职务 参考枚举GuildJob
  1041. /// </summary>
  1042. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"job", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1043. [global::System.ComponentModel.DefaultValue(default(int))]
  1044. public int job
  1045. {
  1046. get { return _job; }
  1047. set { _job = value; }
  1048. }
  1049. private string _jobName = "";
  1050. /// <summary>
  1051. /// 职务名称
  1052. /// </summary>
  1053. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"jobName", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1054. [global::System.ComponentModel.DefaultValue("")]
  1055. public string jobName
  1056. {
  1057. get { return _jobName; }
  1058. set { _jobName = value; }
  1059. }
  1060. private string _joinTime = "";
  1061. /// <summary>
  1062. /// 入会时间
  1063. /// </summary>
  1064. [global::ProtoBuf.ProtoMember(8, IsRequired = false, Name=@"joinTime", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1065. [global::System.ComponentModel.DefaultValue("")]
  1066. public string joinTime
  1067. {
  1068. get { return _joinTime; }
  1069. set { _joinTime = value; }
  1070. }
  1071. private int _currentContribute = default(int);
  1072. /// <summary>
  1073. /// 当前贡献
  1074. /// </summary>
  1075. [global::ProtoBuf.ProtoMember(9, IsRequired = false, Name=@"currentContribute", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1076. [global::System.ComponentModel.DefaultValue(default(int))]
  1077. public int currentContribute
  1078. {
  1079. get { return _currentContribute; }
  1080. set { _currentContribute = value; }
  1081. }
  1082. private int _totalContribute = default(int);
  1083. /// <summary>
  1084. /// 历史贡献
  1085. /// </summary>
  1086. [global::ProtoBuf.ProtoMember(10, IsRequired = false, Name=@"totalContribute", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1087. [global::System.ComponentModel.DefaultValue(default(int))]
  1088. public int totalContribute
  1089. {
  1090. get { return _totalContribute; }
  1091. set { _totalContribute = value; }
  1092. }
  1093. private int _onlineState = default(int);
  1094. /// <summary>
  1095. /// 在线状态 0: 离线 1:在线
  1096. /// </summary>
  1097. [global::ProtoBuf.ProtoMember(11, IsRequired = false, Name=@"onlineState", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1098. [global::System.ComponentModel.DefaultValue(default(int))]
  1099. public int onlineState
  1100. {
  1101. get { return _onlineState; }
  1102. set { _onlineState = value; }
  1103. }
  1104. private int _lastActiveTime = default(int);
  1105. /// <summary>
  1106. /// 上次离线时间
  1107. /// </summary>
  1108. [global::ProtoBuf.ProtoMember(12, IsRequired = false, Name=@"lastActiveTime", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1109. [global::System.ComponentModel.DefaultValue(default(int))]
  1110. public int lastActiveTime
  1111. {
  1112. get { return _lastActiveTime; }
  1113. set { _lastActiveTime = value; }
  1114. }
  1115. private string _guildName = "";
  1116. /// <summary>
  1117. /// 仙盟名称
  1118. /// </summary>
  1119. [global::ProtoBuf.ProtoMember(13, IsRequired = false, Name=@"guildName", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1120. [global::System.ComponentModel.DefaultValue("")]
  1121. public string guildName
  1122. {
  1123. get { return _guildName; }
  1124. set { _guildName = value; }
  1125. }
  1126. private int _sex = default(int);
  1127. /// <summary>
  1128. /// 性别
  1129. /// </summary>
  1130. [global::ProtoBuf.ProtoMember(14, IsRequired = false, Name=@"sex", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1131. [global::System.ComponentModel.DefaultValue(default(int))]
  1132. public int sex
  1133. {
  1134. get { return _sex; }
  1135. set { _sex = value; }
  1136. }
  1137. private global::ProtoBuf.IExtension extensionObject;
  1138. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1139. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1140. }
  1141. //---------------------------------------------------------------------------------------
  1142. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"ApplyInfo")]
  1143. public partial class ApplyInfo : global::ProtoBuf.IExtensible
  1144. {
  1145. public ApplyInfo() {}
  1146. private string _applyId = "";
  1147. /// <summary>
  1148. /// 申请id
  1149. /// </summary>
  1150. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"applyId", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1151. [global::System.ComponentModel.DefaultValue("")]
  1152. public string applyId
  1153. {
  1154. get { return _applyId; }
  1155. set { _applyId = value; }
  1156. }
  1157. private string _playerId = "";
  1158. /// <summary>
  1159. /// 申请人id
  1160. /// </summary>
  1161. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"playerId", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1162. [global::System.ComponentModel.DefaultValue("")]
  1163. public string playerId
  1164. {
  1165. get { return _playerId; }
  1166. set { _playerId = value; }
  1167. }
  1168. private int _pro = default(int);
  1169. /// <summary>
  1170. /// 职业
  1171. /// </summary>
  1172. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"pro", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1173. [global::System.ComponentModel.DefaultValue(default(int))]
  1174. public int pro
  1175. {
  1176. get { return _pro; }
  1177. set { _pro = value; }
  1178. }
  1179. private string _name = "";
  1180. /// <summary>
  1181. /// 名字
  1182. /// </summary>
  1183. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"name", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1184. [global::System.ComponentModel.DefaultValue("")]
  1185. public string name
  1186. {
  1187. get { return _name; }
  1188. set { _name = value; }
  1189. }
  1190. private int _level = default(int);
  1191. /// <summary>
  1192. /// 等级
  1193. /// </summary>
  1194. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"level", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1195. [global::System.ComponentModel.DefaultValue(default(int))]
  1196. public int level
  1197. {
  1198. get { return _level; }
  1199. set { _level = value; }
  1200. }
  1201. private long _fightPower = default(long);
  1202. /// <summary>
  1203. /// 战力
  1204. /// </summary>
  1205. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"fightPower", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1206. [global::System.ComponentModel.DefaultValue(default(long))]
  1207. public long fightPower
  1208. {
  1209. get { return _fightPower; }
  1210. set { _fightPower = value; }
  1211. }
  1212. private int _upLevel = default(int);
  1213. /// <summary>
  1214. /// 进阶等级
  1215. /// </summary>
  1216. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"upLevel", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1217. [global::System.ComponentModel.DefaultValue(default(int))]
  1218. public int upLevel
  1219. {
  1220. get { return _upLevel; }
  1221. set { _upLevel = value; }
  1222. }
  1223. private string _createTime = "";
  1224. /// <summary>
  1225. /// 申请创建时间
  1226. /// </summary>
  1227. [global::ProtoBuf.ProtoMember(8, IsRequired = false, Name=@"createTime", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1228. [global::System.ComponentModel.DefaultValue("")]
  1229. public string createTime
  1230. {
  1231. get { return _createTime; }
  1232. set { _createTime = value; }
  1233. }
  1234. private int _sex = default(int);
  1235. /// <summary>
  1236. /// 性别
  1237. /// </summary>
  1238. [global::ProtoBuf.ProtoMember(9, IsRequired = false, Name=@"sex", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1239. [global::System.ComponentModel.DefaultValue(default(int))]
  1240. public int sex
  1241. {
  1242. get { return _sex; }
  1243. set { _sex = 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=@"CreateGuildResponse")]
  1251. public partial class CreateGuildResponse : global::ProtoBuf.IExtensible
  1252. {
  1253. public CreateGuildResponse() {}
  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 pomelo.area.MyGuildInfo _s2c_guildInfo = null;
  1270. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"s2c_guildInfo", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1271. [global::System.ComponentModel.DefaultValue(null)]
  1272. public pomelo.area.MyGuildInfo s2c_guildInfo
  1273. {
  1274. get { return _s2c_guildInfo; }
  1275. set { _s2c_guildInfo = value; }
  1276. }
  1277. private global::ProtoBuf.IExtension extensionObject;
  1278. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1279. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1280. }
  1281. //---------------------------------------------------------------------------------------
  1282. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GetGuildListResponse")]
  1283. public partial class GetGuildListResponse : global::ProtoBuf.IExtensible
  1284. {
  1285. public GetGuildListResponse() {}
  1286. private int _s2c_code;
  1287. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1288. public int s2c_code
  1289. {
  1290. get { return _s2c_code; }
  1291. set { _s2c_code = value; }
  1292. }
  1293. private string _s2c_msg = "";
  1294. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1295. [global::System.ComponentModel.DefaultValue("")]
  1296. public string s2c_msg
  1297. {
  1298. get { return _s2c_msg; }
  1299. set { _s2c_msg = value; }
  1300. }
  1301. private readonly global::System.Collections.Generic.List<pomelo.area.GuildInfo> _s2c_guildList = new global::System.Collections.Generic.List<pomelo.area.GuildInfo>();
  1302. [global::ProtoBuf.ProtoMember(3, Name=@"s2c_guildList", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1303. public global::System.Collections.Generic.List<pomelo.area.GuildInfo> s2c_guildList
  1304. {
  1305. get { return _s2c_guildList; }
  1306. }
  1307. private global::ProtoBuf.IExtension extensionObject;
  1308. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1309. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1310. }
  1311. //---------------------------------------------------------------------------------------
  1312. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"JoinGuildResponse")]
  1313. public partial class JoinGuildResponse : global::ProtoBuf.IExtensible
  1314. {
  1315. public JoinGuildResponse() {}
  1316. private int _s2c_code;
  1317. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1318. public int s2c_code
  1319. {
  1320. get { return _s2c_code; }
  1321. set { _s2c_code = value; }
  1322. }
  1323. private string _s2c_msg = "";
  1324. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1325. [global::System.ComponentModel.DefaultValue("")]
  1326. public string s2c_msg
  1327. {
  1328. get { return _s2c_msg; }
  1329. set { _s2c_msg = value; }
  1330. }
  1331. private global::ProtoBuf.IExtension extensionObject;
  1332. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1333. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1334. }
  1335. //---------------------------------------------------------------------------------------
  1336. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"JoinGuildOfPlayerResponse")]
  1337. public partial class JoinGuildOfPlayerResponse : global::ProtoBuf.IExtensible
  1338. {
  1339. public JoinGuildOfPlayerResponse() {}
  1340. private int _s2c_code;
  1341. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1342. public int s2c_code
  1343. {
  1344. get { return _s2c_code; }
  1345. set { _s2c_code = value; }
  1346. }
  1347. private string _s2c_msg = "";
  1348. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1349. [global::System.ComponentModel.DefaultValue("")]
  1350. public string s2c_msg
  1351. {
  1352. get { return _s2c_msg; }
  1353. set { _s2c_msg = value; }
  1354. }
  1355. private global::ProtoBuf.IExtension extensionObject;
  1356. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1357. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1358. }
  1359. //---------------------------------------------------------------------------------------
  1360. /// <summary>
  1361. /// 邀请加入公会
  1362. /// </summary>
  1363. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"InvitePlayerJoinMyGuildResponse")]
  1364. public partial class InvitePlayerJoinMyGuildResponse : global::ProtoBuf.IExtensible
  1365. {
  1366. public InvitePlayerJoinMyGuildResponse() {}
  1367. private int _s2c_code;
  1368. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1369. public int s2c_code
  1370. {
  1371. get { return _s2c_code; }
  1372. set { _s2c_code = value; }
  1373. }
  1374. private string _s2c_msg = "";
  1375. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1376. [global::System.ComponentModel.DefaultValue("")]
  1377. public string s2c_msg
  1378. {
  1379. get { return _s2c_msg; }
  1380. set { _s2c_msg = value; }
  1381. }
  1382. private global::ProtoBuf.IExtension extensionObject;
  1383. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1384. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1385. }
  1386. //---------------------------------------------------------------------------------------
  1387. /// <summary>
  1388. /// 同意和拒绝邀请
  1389. /// </summary>
  1390. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"AgreeOrRefuseInviteResponse")]
  1391. public partial class AgreeOrRefuseInviteResponse : global::ProtoBuf.IExtensible
  1392. {
  1393. public AgreeOrRefuseInviteResponse() {}
  1394. private int _s2c_code;
  1395. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1396. public int s2c_code
  1397. {
  1398. get { return _s2c_code; }
  1399. set { _s2c_code = value; }
  1400. }
  1401. private string _s2c_msg = "";
  1402. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1403. [global::System.ComponentModel.DefaultValue("")]
  1404. public string s2c_msg
  1405. {
  1406. get { return _s2c_msg; }
  1407. set { _s2c_msg = value; }
  1408. }
  1409. private global::ProtoBuf.IExtension extensionObject;
  1410. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1411. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1412. }
  1413. //---------------------------------------------------------------------------------------
  1414. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"DealApplyResponse")]
  1415. public partial class DealApplyResponse : global::ProtoBuf.IExtensible
  1416. {
  1417. public DealApplyResponse() {}
  1418. private int _s2c_code;
  1419. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1420. public int s2c_code
  1421. {
  1422. get { return _s2c_code; }
  1423. set { _s2c_code = value; }
  1424. }
  1425. private string _s2c_msg = "";
  1426. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1427. [global::System.ComponentModel.DefaultValue("")]
  1428. public string s2c_msg
  1429. {
  1430. get { return _s2c_msg; }
  1431. set { _s2c_msg = value; }
  1432. }
  1433. private global::ProtoBuf.IExtension extensionObject;
  1434. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1435. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1436. }
  1437. //---------------------------------------------------------------------------------------
  1438. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GetMyGuildInfoResponse")]
  1439. public partial class GetMyGuildInfoResponse : global::ProtoBuf.IExtensible
  1440. {
  1441. public GetMyGuildInfoResponse() {}
  1442. private int _s2c_code;
  1443. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1444. public int s2c_code
  1445. {
  1446. get { return _s2c_code; }
  1447. set { _s2c_code = value; }
  1448. }
  1449. private string _s2c_msg = "";
  1450. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1451. [global::System.ComponentModel.DefaultValue("")]
  1452. public string s2c_msg
  1453. {
  1454. get { return _s2c_msg; }
  1455. set { _s2c_msg = value; }
  1456. }
  1457. private pomelo.area.MyGuildInfo _s2c_guildInfo = null;
  1458. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"s2c_guildInfo", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1459. [global::System.ComponentModel.DefaultValue(null)]
  1460. public pomelo.area.MyGuildInfo s2c_guildInfo
  1461. {
  1462. get { return _s2c_guildInfo; }
  1463. set { _s2c_guildInfo = value; }
  1464. }
  1465. private global::ProtoBuf.IExtension extensionObject;
  1466. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1467. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1468. }
  1469. //---------------------------------------------------------------------------------------
  1470. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GetMyGuildMembersResponse")]
  1471. public partial class GetMyGuildMembersResponse : global::ProtoBuf.IExtensible
  1472. {
  1473. public GetMyGuildMembersResponse() {}
  1474. private int _s2c_code;
  1475. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1476. public int s2c_code
  1477. {
  1478. get { return _s2c_code; }
  1479. set { _s2c_code = value; }
  1480. }
  1481. private string _s2c_msg = "";
  1482. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1483. [global::System.ComponentModel.DefaultValue("")]
  1484. public string s2c_msg
  1485. {
  1486. get { return _s2c_msg; }
  1487. set { _s2c_msg = value; }
  1488. }
  1489. private readonly global::System.Collections.Generic.List<pomelo.area.MemberInfo> _s2c_memberList = new global::System.Collections.Generic.List<pomelo.area.MemberInfo>();
  1490. [global::ProtoBuf.ProtoMember(3, Name=@"s2c_memberList", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1491. public global::System.Collections.Generic.List<pomelo.area.MemberInfo> s2c_memberList
  1492. {
  1493. get { return _s2c_memberList; }
  1494. }
  1495. private int _s2c_leftKickNum = default(int);
  1496. /// <summary>
  1497. /// 今日剩余踢人次数
  1498. /// </summary>
  1499. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"s2c_leftKickNum", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1500. [global::System.ComponentModel.DefaultValue(default(int))]
  1501. public int s2c_leftKickNum
  1502. {
  1503. get { return _s2c_leftKickNum; }
  1504. set { _s2c_leftKickNum = value; }
  1505. }
  1506. private global::ProtoBuf.IExtension extensionObject;
  1507. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1508. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1509. }
  1510. //---------------------------------------------------------------------------------------
  1511. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GetApplyListResponse")]
  1512. public partial class GetApplyListResponse : global::ProtoBuf.IExtensible
  1513. {
  1514. public GetApplyListResponse() {}
  1515. private int _s2c_code;
  1516. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1517. public int s2c_code
  1518. {
  1519. get { return _s2c_code; }
  1520. set { _s2c_code = value; }
  1521. }
  1522. private string _s2c_msg = "";
  1523. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1524. [global::System.ComponentModel.DefaultValue("")]
  1525. public string s2c_msg
  1526. {
  1527. get { return _s2c_msg; }
  1528. set { _s2c_msg = value; }
  1529. }
  1530. private readonly global::System.Collections.Generic.List<pomelo.area.ApplyInfo> _s2c_applyList = new global::System.Collections.Generic.List<pomelo.area.ApplyInfo>();
  1531. [global::ProtoBuf.ProtoMember(3, Name=@"s2c_applyList", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1532. public global::System.Collections.Generic.List<pomelo.area.ApplyInfo> s2c_applyList
  1533. {
  1534. get { return _s2c_applyList; }
  1535. }
  1536. private global::ProtoBuf.IExtension extensionObject;
  1537. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1538. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1539. }
  1540. //---------------------------------------------------------------------------------------
  1541. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"SetGuildInfoResponse")]
  1542. public partial class SetGuildInfoResponse : global::ProtoBuf.IExtensible
  1543. {
  1544. public SetGuildInfoResponse() {}
  1545. private int _s2c_code;
  1546. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1547. public int s2c_code
  1548. {
  1549. get { return _s2c_code; }
  1550. set { _s2c_code = value; }
  1551. }
  1552. private string _s2c_msg = "";
  1553. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1554. [global::System.ComponentModel.DefaultValue("")]
  1555. public string s2c_msg
  1556. {
  1557. get { return _s2c_msg; }
  1558. set { _s2c_msg = value; }
  1559. }
  1560. private global::ProtoBuf.IExtension extensionObject;
  1561. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1562. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1563. }
  1564. //---------------------------------------------------------------------------------------
  1565. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"SetGuildQQGroupResponse")]
  1566. public partial class SetGuildQQGroupResponse : global::ProtoBuf.IExtensible
  1567. {
  1568. public SetGuildQQGroupResponse() {}
  1569. private int _s2c_code;
  1570. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1571. public int s2c_code
  1572. {
  1573. get { return _s2c_code; }
  1574. set { _s2c_code = value; }
  1575. }
  1576. private string _s2c_msg = "";
  1577. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1578. [global::System.ComponentModel.DefaultValue("")]
  1579. public string s2c_msg
  1580. {
  1581. get { return _s2c_msg; }
  1582. set { _s2c_msg = value; }
  1583. }
  1584. private global::ProtoBuf.IExtension extensionObject;
  1585. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1586. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1587. }
  1588. //---------------------------------------------------------------------------------------
  1589. /// <summary>
  1590. /// 退出公会
  1591. /// </summary>
  1592. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"ExitGuildResponse")]
  1593. public partial class ExitGuildResponse : global::ProtoBuf.IExtensible
  1594. {
  1595. public ExitGuildResponse() {}
  1596. private int _s2c_code;
  1597. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1598. public int s2c_code
  1599. {
  1600. get { return _s2c_code; }
  1601. set { _s2c_code = value; }
  1602. }
  1603. private string _s2c_msg = "";
  1604. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1605. [global::System.ComponentModel.DefaultValue("")]
  1606. public string s2c_msg
  1607. {
  1608. get { return _s2c_msg; }
  1609. set { _s2c_msg = value; }
  1610. }
  1611. private global::ProtoBuf.IExtension extensionObject;
  1612. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1613. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1614. }
  1615. //---------------------------------------------------------------------------------------
  1616. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"KickMemberResponse")]
  1617. public partial class KickMemberResponse : global::ProtoBuf.IExtensible
  1618. {
  1619. public KickMemberResponse() {}
  1620. private int _s2c_code;
  1621. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1622. public int s2c_code
  1623. {
  1624. get { return _s2c_code; }
  1625. set { _s2c_code = value; }
  1626. }
  1627. private string _s2c_msg = "";
  1628. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1629. [global::System.ComponentModel.DefaultValue("")]
  1630. public string s2c_msg
  1631. {
  1632. get { return _s2c_msg; }
  1633. set { _s2c_msg = value; }
  1634. }
  1635. private int _s2c_leftKickNum = default(int);
  1636. /// <summary>
  1637. /// 今日剩余踢人次数
  1638. /// </summary>
  1639. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"s2c_leftKickNum", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1640. [global::System.ComponentModel.DefaultValue(default(int))]
  1641. public int s2c_leftKickNum
  1642. {
  1643. get { return _s2c_leftKickNum; }
  1644. set { _s2c_leftKickNum = value; }
  1645. }
  1646. private global::ProtoBuf.IExtension extensionObject;
  1647. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1648. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1649. }
  1650. //---------------------------------------------------------------------------------------
  1651. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"UpgradeGuildLevelResponse")]
  1652. public partial class UpgradeGuildLevelResponse : global::ProtoBuf.IExtensible
  1653. {
  1654. public UpgradeGuildLevelResponse() {}
  1655. private int _s2c_code;
  1656. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1657. public int s2c_code
  1658. {
  1659. get { return _s2c_code; }
  1660. set { _s2c_code = value; }
  1661. }
  1662. private string _s2c_msg = "";
  1663. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1664. [global::System.ComponentModel.DefaultValue("")]
  1665. public string s2c_msg
  1666. {
  1667. get { return _s2c_msg; }
  1668. set { _s2c_msg = value; }
  1669. }
  1670. private pomelo.area.MyGuildInfo _s2c_guildInfo = null;
  1671. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"s2c_guildInfo", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1672. [global::System.ComponentModel.DefaultValue(null)]
  1673. public pomelo.area.MyGuildInfo s2c_guildInfo
  1674. {
  1675. get { return _s2c_guildInfo; }
  1676. set { _s2c_guildInfo = value; }
  1677. }
  1678. private global::ProtoBuf.IExtension extensionObject;
  1679. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1680. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1681. }
  1682. //---------------------------------------------------------------------------------------
  1683. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"ChangeGuildNoticeResponse")]
  1684. public partial class ChangeGuildNoticeResponse : global::ProtoBuf.IExtensible
  1685. {
  1686. public ChangeGuildNoticeResponse() {}
  1687. private int _s2c_code;
  1688. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1689. public int s2c_code
  1690. {
  1691. get { return _s2c_code; }
  1692. set { _s2c_code = value; }
  1693. }
  1694. private string _s2c_msg = "";
  1695. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1696. [global::System.ComponentModel.DefaultValue("")]
  1697. public string s2c_msg
  1698. {
  1699. get { return _s2c_msg; }
  1700. set { _s2c_msg = value; }
  1701. }
  1702. private string _s2c_notice = "";
  1703. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"s2c_notice", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1704. [global::System.ComponentModel.DefaultValue("")]
  1705. public string s2c_notice
  1706. {
  1707. get { return _s2c_notice; }
  1708. set { _s2c_notice = value; }
  1709. }
  1710. private global::ProtoBuf.IExtension extensionObject;
  1711. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1712. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1713. }
  1714. //---------------------------------------------------------------------------------------
  1715. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"ChangeGuildNameResponse")]
  1716. public partial class ChangeGuildNameResponse : global::ProtoBuf.IExtensible
  1717. {
  1718. public ChangeGuildNameResponse() {}
  1719. private int _s2c_code;
  1720. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1721. public int s2c_code
  1722. {
  1723. get { return _s2c_code; }
  1724. set { _s2c_code = value; }
  1725. }
  1726. private string _s2c_msg = "";
  1727. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1728. [global::System.ComponentModel.DefaultValue("")]
  1729. public string s2c_msg
  1730. {
  1731. get { return _s2c_msg; }
  1732. set { _s2c_msg = value; }
  1733. }
  1734. private global::ProtoBuf.IExtension extensionObject;
  1735. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1736. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1737. }
  1738. //---------------------------------------------------------------------------------------
  1739. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"ChangeOfficeNameResponse")]
  1740. public partial class ChangeOfficeNameResponse : global::ProtoBuf.IExtensible
  1741. {
  1742. public ChangeOfficeNameResponse() {}
  1743. private int _s2c_code;
  1744. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1745. public int s2c_code
  1746. {
  1747. get { return _s2c_code; }
  1748. set { _s2c_code = value; }
  1749. }
  1750. private string _s2c_msg = "";
  1751. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1752. [global::System.ComponentModel.DefaultValue("")]
  1753. public string s2c_msg
  1754. {
  1755. get { return _s2c_msg; }
  1756. set { _s2c_msg = value; }
  1757. }
  1758. private global::ProtoBuf.IExtension extensionObject;
  1759. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1760. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1761. }
  1762. //---------------------------------------------------------------------------------------
  1763. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"ContributeToGuildResponse")]
  1764. public partial class ContributeToGuildResponse : global::ProtoBuf.IExtensible
  1765. {
  1766. public ContributeToGuildResponse() {}
  1767. private int _s2c_code;
  1768. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1769. public int s2c_code
  1770. {
  1771. get { return _s2c_code; }
  1772. set { _s2c_code = value; }
  1773. }
  1774. private string _s2c_msg = "";
  1775. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1776. [global::System.ComponentModel.DefaultValue("")]
  1777. public string s2c_msg
  1778. {
  1779. get { return _s2c_msg; }
  1780. set { _s2c_msg = value; }
  1781. }
  1782. private pomelo.area.MyGuildInfo _s2c_guildInfo = null;
  1783. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"s2c_guildInfo", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1784. [global::System.ComponentModel.DefaultValue(null)]
  1785. public pomelo.area.MyGuildInfo s2c_guildInfo
  1786. {
  1787. get { return _s2c_guildInfo; }
  1788. set { _s2c_guildInfo = value; }
  1789. }
  1790. private global::ProtoBuf.IExtension extensionObject;
  1791. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1792. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1793. }
  1794. //---------------------------------------------------------------------------------------
  1795. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"SetMemberJobResponse")]
  1796. public partial class SetMemberJobResponse : global::ProtoBuf.IExtensible
  1797. {
  1798. public SetMemberJobResponse() {}
  1799. private int _s2c_code;
  1800. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1801. public int s2c_code
  1802. {
  1803. get { return _s2c_code; }
  1804. set { _s2c_code = value; }
  1805. }
  1806. private string _s2c_msg = "";
  1807. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1808. [global::System.ComponentModel.DefaultValue("")]
  1809. public string s2c_msg
  1810. {
  1811. get { return _s2c_msg; }
  1812. set { _s2c_msg = value; }
  1813. }
  1814. private global::ProtoBuf.IExtension extensionObject;
  1815. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1816. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1817. }
  1818. //---------------------------------------------------------------------------------------
  1819. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"TransferPresidentResponse")]
  1820. public partial class TransferPresidentResponse : global::ProtoBuf.IExtensible
  1821. {
  1822. public TransferPresidentResponse() {}
  1823. private int _s2c_code;
  1824. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1825. public int s2c_code
  1826. {
  1827. get { return _s2c_code; }
  1828. set { _s2c_code = value; }
  1829. }
  1830. private string _s2c_msg = "";
  1831. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1832. [global::System.ComponentModel.DefaultValue("")]
  1833. public string s2c_msg
  1834. {
  1835. get { return _s2c_msg; }
  1836. set { _s2c_msg = value; }
  1837. }
  1838. private readonly global::System.Collections.Generic.List<pomelo.area.MemberInfo> _s2c_memberList = new global::System.Collections.Generic.List<pomelo.area.MemberInfo>();
  1839. [global::ProtoBuf.ProtoMember(3, Name=@"s2c_memberList", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1840. public global::System.Collections.Generic.List<pomelo.area.MemberInfo> s2c_memberList
  1841. {
  1842. get { return _s2c_memberList; }
  1843. }
  1844. private pomelo.area.MyGuildInfo _s2c_guildInfo = null;
  1845. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"s2c_guildInfo", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1846. [global::System.ComponentModel.DefaultValue(null)]
  1847. public pomelo.area.MyGuildInfo s2c_guildInfo
  1848. {
  1849. get { return _s2c_guildInfo; }
  1850. set { _s2c_guildInfo = value; }
  1851. }
  1852. private global::ProtoBuf.IExtension extensionObject;
  1853. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1854. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1855. }
  1856. //---------------------------------------------------------------------------------------
  1857. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GuildRefreshPush")]
  1858. public partial class GuildRefreshPush : global::ProtoBuf.IExtensible
  1859. {
  1860. public GuildRefreshPush() {}
  1861. private int _s2c_code;
  1862. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1863. public int s2c_code
  1864. {
  1865. get { return _s2c_code; }
  1866. set { _s2c_code = value; }
  1867. }
  1868. private string _s2c_msg = "";
  1869. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1870. [global::System.ComponentModel.DefaultValue("")]
  1871. public string s2c_msg
  1872. {
  1873. get { return _s2c_msg; }
  1874. set { _s2c_msg = value; }
  1875. }
  1876. private int _isIn = default(int);
  1877. /// <summary>
  1878. /// 进入公会
  1879. /// </summary>
  1880. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"isIn", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1881. [global::System.ComponentModel.DefaultValue(default(int))]
  1882. public int isIn
  1883. {
  1884. get { return _isIn; }
  1885. set { _isIn = value; }
  1886. }
  1887. private int _isOut = default(int);
  1888. /// <summary>
  1889. /// 退出公会
  1890. /// </summary>
  1891. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"isOut", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1892. [global::System.ComponentModel.DefaultValue(default(int))]
  1893. public int isOut
  1894. {
  1895. get { return _isOut; }
  1896. set { _isOut = value; }
  1897. }
  1898. private int _job = default(int);
  1899. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"job", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1900. [global::System.ComponentModel.DefaultValue(default(int))]
  1901. public int job
  1902. {
  1903. get { return _job; }
  1904. set { _job = value; }
  1905. }
  1906. private string _jobName = "";
  1907. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"jobName", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1908. [global::System.ComponentModel.DefaultValue("")]
  1909. public string jobName
  1910. {
  1911. get { return _jobName; }
  1912. set { _jobName = value; }
  1913. }
  1914. private string _guildName = "";
  1915. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"guildName", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1916. [global::System.ComponentModel.DefaultValue("")]
  1917. public string guildName
  1918. {
  1919. get { return _guildName; }
  1920. set { _guildName = value; }
  1921. }
  1922. private readonly global::System.Collections.Generic.List<pomelo.area.ContributeTimesInfo> _timesList = new global::System.Collections.Generic.List<pomelo.area.ContributeTimesInfo>();
  1923. /// <summary>
  1924. /// 捐献次数
  1925. /// </summary>
  1926. [global::ProtoBuf.ProtoMember(8, Name=@"timesList", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1927. public global::System.Collections.Generic.List<pomelo.area.ContributeTimesInfo> timesList
  1928. {
  1929. get { return _timesList; }
  1930. }
  1931. private global::ProtoBuf.IExtension extensionObject;
  1932. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1933. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1934. }
  1935. //---------------------------------------------------------------------------------------
  1936. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GuildInvitePush")]
  1937. public partial class GuildInvitePush : global::ProtoBuf.IExtensible
  1938. {
  1939. public GuildInvitePush() {}
  1940. private int _s2c_code;
  1941. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1942. public int s2c_code
  1943. {
  1944. get { return _s2c_code; }
  1945. set { _s2c_code = value; }
  1946. }
  1947. private string _s2c_msg = "";
  1948. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1949. [global::System.ComponentModel.DefaultValue("")]
  1950. public string s2c_msg
  1951. {
  1952. get { return _s2c_msg; }
  1953. set { _s2c_msg = value; }
  1954. }
  1955. private string _playerId = "";
  1956. /// <summary>
  1957. /// 邀请者ID
  1958. /// </summary>
  1959. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"playerId", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1960. [global::System.ComponentModel.DefaultValue("")]
  1961. public string playerId
  1962. {
  1963. get { return _playerId; }
  1964. set { _playerId = value; }
  1965. }
  1966. private string _playerName = "";
  1967. /// <summary>
  1968. /// 邀请者姓名
  1969. /// </summary>
  1970. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"playerName", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1971. [global::System.ComponentModel.DefaultValue("")]
  1972. public string playerName
  1973. {
  1974. get { return _playerName; }
  1975. set { _playerName = value; }
  1976. }
  1977. private string _guildId = "";
  1978. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"guildId", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1979. [global::System.ComponentModel.DefaultValue("")]
  1980. public string guildId
  1981. {
  1982. get { return _guildId; }
  1983. set { _guildId = value; }
  1984. }
  1985. private string _guildName = "";
  1986. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"guildName", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1987. [global::System.ComponentModel.DefaultValue("")]
  1988. public string guildName
  1989. {
  1990. get { return _guildName; }
  1991. set { _guildName = value; }
  1992. }
  1993. private int _playerPro = default(int);
  1994. /// <summary>
  1995. /// 邀请者职业
  1996. /// </summary>
  1997. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"playerPro", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1998. [global::System.ComponentModel.DefaultValue(default(int))]
  1999. public int playerPro
  2000. {
  2001. get { return _playerPro; }
  2002. set { _playerPro = value; }
  2003. }
  2004. private int _guildLevel = default(int);
  2005. /// <summary>
  2006. /// 公会等级
  2007. /// </summary>
  2008. [global::ProtoBuf.ProtoMember(8, IsRequired = false, Name=@"guildLevel", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  2009. [global::System.ComponentModel.DefaultValue(default(int))]
  2010. public int guildLevel
  2011. {
  2012. get { return _guildLevel; }
  2013. set { _guildLevel = value; }
  2014. }
  2015. private global::ProtoBuf.IExtension extensionObject;
  2016. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  2017. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  2018. }
  2019. //---------------------------------------------------------------------------------------
  2020. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"OnDungeonEndPush")]
  2021. public partial class OnDungeonEndPush : global::ProtoBuf.IExtensible
  2022. {
  2023. public OnDungeonEndPush() {}
  2024. private int _s2c_code;
  2025. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  2026. public int s2c_code
  2027. {
  2028. get { return _s2c_code; }
  2029. set { _s2c_code = value; }
  2030. }
  2031. private string _s2c_msg = "";
  2032. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2033. [global::System.ComponentModel.DefaultValue("")]
  2034. public string s2c_msg
  2035. {
  2036. get { return _s2c_msg; }
  2037. set { _s2c_msg = value; }
  2038. }
  2039. private int _state;
  2040. /// <summary>
  2041. /// 1:通关,0:未通关
  2042. /// </summary>
  2043. [global::ProtoBuf.ProtoMember(3, IsRequired = true, Name=@"state", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  2044. public int state
  2045. {
  2046. get { return _state; }
  2047. set { _state = value; }
  2048. }
  2049. private int _leftTime;
  2050. [global::ProtoBuf.ProtoMember(4, IsRequired = true, Name=@"leftTime", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  2051. public int leftTime
  2052. {
  2053. get { return _leftTime; }
  2054. set { _leftTime = value; }
  2055. }
  2056. private readonly global::System.Collections.Generic.List<pomelo.item.ItemDetail> _awardItem = new global::System.Collections.Generic.List<pomelo.item.ItemDetail>();
  2057. [global::ProtoBuf.ProtoMember(5, Name=@"awardItem", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2058. public global::System.Collections.Generic.List<pomelo.item.ItemDetail> awardItem
  2059. {
  2060. get { return _awardItem; }
  2061. }
  2062. private global::ProtoBuf.IExtension extensionObject;
  2063. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  2064. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  2065. }
  2066. //---------------------------------------------------------------------------------------
  2067. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GuildDungeonOpenPush")]
  2068. public partial class GuildDungeonOpenPush : global::ProtoBuf.IExtensible
  2069. {
  2070. public GuildDungeonOpenPush() {}
  2071. private int _s2c_code;
  2072. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  2073. public int s2c_code
  2074. {
  2075. get { return _s2c_code; }
  2076. set { _s2c_code = value; }
  2077. }
  2078. private string _s2c_msg = "";
  2079. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2080. [global::System.ComponentModel.DefaultValue("")]
  2081. public string s2c_msg
  2082. {
  2083. get { return _s2c_msg; }
  2084. set { _s2c_msg = value; }
  2085. }
  2086. private global::ProtoBuf.IExtension extensionObject;
  2087. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  2088. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  2089. }
  2090. //---------------------------------------------------------------------------------------
  2091. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GuildDungeonPassPush")]
  2092. public partial class GuildDungeonPassPush : global::ProtoBuf.IExtensible
  2093. {
  2094. public GuildDungeonPassPush() {}
  2095. private int _s2c_code;
  2096. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  2097. public int s2c_code
  2098. {
  2099. get { return _s2c_code; }
  2100. set { _s2c_code = value; }
  2101. }
  2102. private string _s2c_msg = "";
  2103. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2104. [global::System.ComponentModel.DefaultValue("")]
  2105. public string s2c_msg
  2106. {
  2107. get { return _s2c_msg; }
  2108. set { _s2c_msg = value; }
  2109. }
  2110. private int _dungeonCount;
  2111. [global::ProtoBuf.ProtoMember(3, IsRequired = true, Name=@"dungeonCount", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  2112. public int dungeonCount
  2113. {
  2114. get { return _dungeonCount; }
  2115. set { _dungeonCount = value; }
  2116. }
  2117. private global::ProtoBuf.IExtension extensionObject;
  2118. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  2119. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  2120. }
  2121. //---------------------------------------------------------------------------------------
  2122. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GuildDungeonPlayerNumPush")]
  2123. public partial class GuildDungeonPlayerNumPush : global::ProtoBuf.IExtensible
  2124. {
  2125. public GuildDungeonPlayerNumPush() {}
  2126. private int _s2c_code;
  2127. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  2128. public int s2c_code
  2129. {
  2130. get { return _s2c_code; }
  2131. set { _s2c_code = value; }
  2132. }
  2133. private string _s2c_msg = "";
  2134. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2135. [global::System.ComponentModel.DefaultValue("")]
  2136. public string s2c_msg
  2137. {
  2138. get { return _s2c_msg; }
  2139. set { _s2c_msg = value; }
  2140. }
  2141. private int _playerNum;
  2142. [global::ProtoBuf.ProtoMember(3, IsRequired = true, Name=@"playerNum", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  2143. public int playerNum
  2144. {
  2145. get { return _playerNum; }
  2146. set { _playerNum = value; }
  2147. }
  2148. private global::ProtoBuf.IExtension extensionObject;
  2149. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  2150. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  2151. }
  2152. //---------------------------------------------------------------------------------------
  2153. /// <summary>
  2154. /// 1310 仙盟功能boss死亡推送
  2155. /// </summary>
  2156. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GuildFunBossInfoPush")]
  2157. public partial class GuildFunBossInfoPush : global::ProtoBuf.IExtensible
  2158. {
  2159. public GuildFunBossInfoPush() {}
  2160. private readonly global::System.Collections.Generic.List<pomelo.area.GuildFunBossInfo> _info = new global::System.Collections.Generic.List<pomelo.area.GuildFunBossInfo>();
  2161. [global::ProtoBuf.ProtoMember(1, Name=@"info", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2162. public global::System.Collections.Generic.List<pomelo.area.GuildFunBossInfo> info
  2163. {
  2164. get { return _info; }
  2165. }
  2166. private global::ProtoBuf.IExtension extensionObject;
  2167. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  2168. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  2169. }
  2170. //---------------------------------------------------------------------------------------
  2171. [global::ProtoBuf.ProtoContract(Name=@"GuildMode")]
  2172. public enum GuildMode
  2173. {
  2174. /// <summary>
  2175. /// 自动审核
  2176. /// </summary>
  2177. [global::ProtoBuf.ProtoEnum(Name=@"AUTO_MODE", Value=1)]
  2178. AUTO_MODE = 1,
  2179. /// <summary>
  2180. /// 手动审核
  2181. /// </summary>
  2182. [global::ProtoBuf.ProtoEnum(Name=@"CHECK_MODE", Value=2)]
  2183. CHECK_MODE = 2
  2184. }
  2185. //---------------------------------------------------------------------------------------
  2186. [global::ProtoBuf.ProtoContract(Name=@"GuildJob")]
  2187. public enum GuildJob
  2188. {
  2189. /// <summary>
  2190. /// 会长
  2191. /// </summary>
  2192. [global::ProtoBuf.ProtoEnum(Name=@"PRESIDENT", Value=1)]
  2193. PRESIDENT = 1,
  2194. /// <summary>
  2195. /// 副会长
  2196. /// </summary>
  2197. [global::ProtoBuf.ProtoEnum(Name=@"VICE_PRESIDENT", Value=2)]
  2198. VICE_PRESIDENT = 2,
  2199. /// <summary>
  2200. /// 长老
  2201. /// </summary>
  2202. [global::ProtoBuf.ProtoEnum(Name=@"ELDER", Value=3)]
  2203. ELDER = 3,
  2204. /// <summary>
  2205. /// 精英
  2206. /// </summary>
  2207. [global::ProtoBuf.ProtoEnum(Name=@"ELITE", Value=4)]
  2208. ELITE = 4,
  2209. /// <summary>
  2210. /// 成员
  2211. /// </summary>
  2212. [global::ProtoBuf.ProtoEnum(Name=@"MEMBER", Value=5)]
  2213. MEMBER = 5
  2214. }
  2215. }