123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- //------------------------------------------------------------------------------
- // <auto-generated>
- // This code was generated by a tool.
- //
- // Changes to this file may cause incorrect behavior and will be lost if
- // the code is regenerated.
- // </auto-generated>
- //------------------------------------------------------------------------------
- // ***************************************************************************
- // * 作者: 曾振东
- // * 创建时间: 2019.08.08
- // * 用途: 采莲副本
- // ****************************************************************************/
- // Generated from: pickLotusAreaHandler.proto
- // Note: requires additional types generated from: common.proto
- namespace pomelo.area
- {
-
- //---------------------------------------------------------------------------------------
- /// <summary>
- /// 采莲结果
- /// </summary>
-
- [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"CaiLianEndPush")]
- public partial class CaiLianEndPush : global::ProtoBuf.IExtensible
- {
- public CaiLianEndPush() {}
-
-
- private readonly global::System.Collections.Generic.List<int> _flower = new global::System.Collections.Generic.List<int>();
- [global::ProtoBuf.ProtoMember(1, Name=@"flower", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- public global::System.Collections.Generic.List<int> flower
- {
- get { return _flower; }
- }
-
-
- private int _isDouble = default(int);
- /// <summary>
- /// 是否翻倍,0-否,1-翻倍
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"isDouble", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(int))]
- public int isDouble
- {
- get { return _isDouble; }
- set { _isDouble = value; }
- }
-
- private int _isTodayMax = default(int);
- /// <summary>
- /// 今日奖励是否已达上线,0-否,1-是
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"isTodayMax", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(int))]
- public int isTodayMax
- {
- get { return _isTodayMax; }
- set { _isTodayMax = value; }
- }
-
- private string _rewardItem = "";
- /// <summary>
- /// 奖励
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"rewardItem", DataFormat = global::ProtoBuf.DataFormat.Default)]
- [global::System.ComponentModel.DefaultValue("")]
- public string rewardItem
- {
- get { return _rewardItem; }
- set { _rewardItem = value; }
- }
- private global::ProtoBuf.IExtension extensionObject;
- global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
- { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
- }
-
-
- //---------------------------------------------------------------------------------------
- /// <summary>
- /// 已死亡的bossId
- /// </summary>
-
- [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"KillbossInfoPush")]
- public partial class KillbossInfoPush : global::ProtoBuf.IExtensible
- {
- public KillbossInfoPush() {}
-
-
- private readonly global::System.Collections.Generic.List<int> _bossIds = new global::System.Collections.Generic.List<int>();
- [global::ProtoBuf.ProtoMember(1, Name=@"bossIds", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- public global::System.Collections.Generic.List<int> bossIds
- {
- get { return _bossIds; }
- }
-
-
- private readonly global::System.Collections.Generic.List<int> _bossColors = new global::System.Collections.Generic.List<int>();
- /// <summary>
- /// 莲花颜色顺序
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(2, Name=@"bossColors", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- public global::System.Collections.Generic.List<int> bossColors
- {
- get { return _bossColors; }
- }
-
- private global::ProtoBuf.IExtension extensionObject;
- global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
- { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
- }
-
-
- }
-
|