123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130 |
- //------------------------------------------------------------------------------
- // <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>
- //------------------------------------------------------------------------------
- // ***************************************************************************
- // * 作者= jjr
- // * 创建时间= 2017-03-15
- // * 用途= 系统设置处理器
- // ***************************************************************************/
- // Generated from: sysSetHandler.proto
- namespace pomelo.area
- {
-
- //---------------------------------------------------------------------------------------
- [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"SetData")]
- public partial class SetData : global::ProtoBuf.IExtensible
- {
- public SetData() {}
-
-
- private int _recvMailSet;
- /// <summary>
- /// 接收邮件
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"recvMailSet", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- public int recvMailSet
- {
- get { return _recvMailSet; }
- set { _recvMailSet = value; }
- }
-
- private int _teamInviteSet;
- /// <summary>
- /// 允许组队邀请
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"teamInviteSet", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- public int teamInviteSet
- {
- get { return _teamInviteSet; }
- set { _teamInviteSet = value; }
- }
-
- private int _recvStrangerMsgSet;
- /// <summary>
- /// 允许接收陌生人消息
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(3, IsRequired = true, Name=@"recvStrangerMsgSet", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- public int recvStrangerMsgSet
- {
- get { return _recvStrangerMsgSet; }
- set { _recvStrangerMsgSet = value; }
- }
-
- private int _recvAddFriendSet;
- /// <summary>
- /// 允许接收好友申请
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(4, IsRequired = true, Name=@"recvAddFriendSet", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- public int recvAddFriendSet
- {
- get { return _recvAddFriendSet; }
- set { _recvAddFriendSet = value; }
- }
- private global::ProtoBuf.IExtension extensionObject;
- global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
- { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
- }
-
-
- //---------------------------------------------------------------------------------------
- [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"ChangeSysSetRequest")]
- public partial class ChangeSysSetRequest : global::ProtoBuf.IExtensible
- {
- public ChangeSysSetRequest() {}
-
-
- private pomelo.area.SetData _c2s_setData;
- [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"c2s_setData", DataFormat = global::ProtoBuf.DataFormat.Default)]
- public pomelo.area.SetData c2s_setData
- {
- get { return _c2s_setData; }
- set { _c2s_setData = value; }
- }
- private global::ProtoBuf.IExtension extensionObject;
- global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
- { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
- }
-
-
- //---------------------------------------------------------------------------------------
- [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"ChangeSysSetResponse")]
- public partial class ChangeSysSetResponse : global::ProtoBuf.IExtensible
- {
- public ChangeSysSetResponse() {}
-
-
- private int _s2c_code;
- [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- public int s2c_code
- {
- get { return _s2c_code; }
- set { _s2c_code = value; }
- }
-
- private string _s2c_msg = "";
- [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
- [global::System.ComponentModel.DefaultValue("")]
- public string s2c_msg
- {
- get { return _s2c_msg; }
- set { _s2c_msg = value; }
- }
- private global::ProtoBuf.IExtension extensionObject;
- global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
- { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
- }
-
-
- }
-
|