_pickLotusAreaHandler.cs 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. //------------------------------------------------------------------------------
  2. // <auto-generated>
  3. // This code was generated by a tool.
  4. //
  5. // Changes to this file may cause incorrect behavior and will be lost if
  6. // the code is regenerated.
  7. // </auto-generated>
  8. //------------------------------------------------------------------------------
  9. // ***************************************************************************
  10. // * 作者: 曾振东
  11. // * 创建时间: 2019.08.08
  12. // * 用途: 采莲副本
  13. // ****************************************************************************/
  14. // Generated from: pickLotusAreaHandler.proto
  15. // Note: requires additional types generated from: common.proto
  16. namespace pomelo.area
  17. {
  18. //---------------------------------------------------------------------------------------
  19. /// <summary>
  20. /// 采莲结果
  21. /// </summary>
  22. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"CaiLianEndPush")]
  23. public partial class CaiLianEndPush : global::ProtoBuf.IExtensible
  24. {
  25. public CaiLianEndPush() {}
  26. private readonly global::System.Collections.Generic.List<int> _flower = new global::System.Collections.Generic.List<int>();
  27. [global::ProtoBuf.ProtoMember(1, Name=@"flower", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  28. public global::System.Collections.Generic.List<int> flower
  29. {
  30. get { return _flower; }
  31. }
  32. private int _isDouble = default(int);
  33. /// <summary>
  34. /// 是否翻倍,0-否,1-翻倍
  35. /// </summary>
  36. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"isDouble", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  37. [global::System.ComponentModel.DefaultValue(default(int))]
  38. public int isDouble
  39. {
  40. get { return _isDouble; }
  41. set { _isDouble = value; }
  42. }
  43. private int _isTodayMax = default(int);
  44. /// <summary>
  45. /// 今日奖励是否已达上线,0-否,1-是
  46. /// </summary>
  47. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"isTodayMax", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  48. [global::System.ComponentModel.DefaultValue(default(int))]
  49. public int isTodayMax
  50. {
  51. get { return _isTodayMax; }
  52. set { _isTodayMax = value; }
  53. }
  54. private string _rewardItem = "";
  55. /// <summary>
  56. /// 奖励
  57. /// </summary>
  58. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"rewardItem", DataFormat = global::ProtoBuf.DataFormat.Default)]
  59. [global::System.ComponentModel.DefaultValue("")]
  60. public string rewardItem
  61. {
  62. get { return _rewardItem; }
  63. set { _rewardItem = value; }
  64. }
  65. private global::ProtoBuf.IExtension extensionObject;
  66. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  67. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  68. }
  69. //---------------------------------------------------------------------------------------
  70. /// <summary>
  71. /// 已死亡的bossId
  72. /// </summary>
  73. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"KillbossInfoPush")]
  74. public partial class KillbossInfoPush : global::ProtoBuf.IExtensible
  75. {
  76. public KillbossInfoPush() {}
  77. private readonly global::System.Collections.Generic.List<int> _bossIds = new global::System.Collections.Generic.List<int>();
  78. [global::ProtoBuf.ProtoMember(1, Name=@"bossIds", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  79. public global::System.Collections.Generic.List<int> bossIds
  80. {
  81. get { return _bossIds; }
  82. }
  83. private readonly global::System.Collections.Generic.List<int> _bossColors = new global::System.Collections.Generic.List<int>();
  84. /// <summary>
  85. /// 莲花颜色顺序
  86. /// </summary>
  87. [global::ProtoBuf.ProtoMember(2, Name=@"bossColors", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  88. public global::System.Collections.Generic.List<int> bossColors
  89. {
  90. get { return _bossColors; }
  91. }
  92. private global::ProtoBuf.IExtension extensionObject;
  93. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  94. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  95. }
  96. }