using System; using System.Collections.Generic; using System.ComponentModel; using System.Xml.Serialization; using ProtoBuf; namespace KKSG { [ProtoContract(Name = "NotifyLeagueTeamCreate")] [Serializable] public class NotifyLeagueTeamCreate : IExtensible { [ProtoMember(1, IsRequired = false, Name = "league_teamid", DataFormat = DataFormat.TwosComplement)] public ulong league_teamid { get { return this._league_teamid ?? 0UL; } set { this._league_teamid = new ulong?(value); } } [XmlIgnore] [Browsable(false)] public bool league_teamidSpecified { get { return this._league_teamid != null; } set { bool flag = value == (this._league_teamid == null); if (flag) { this._league_teamid = (value ? new ulong?(this.league_teamid) : null); } } } [ProtoMember(2, IsRequired = false, Name = "name", DataFormat = DataFormat.Default)] public string name { get { return this._name ?? ""; } set { this._name = value; } } [XmlIgnore] [Browsable(false)] public bool nameSpecified { get { return this._name != null; } set { bool flag = value == (this._name == null); if (flag) { this._name = (value ? this.name : null); } } } [ProtoMember(3, Name = "members", DataFormat = DataFormat.TwosComplement)] public List members { get { return this._members; } } private ulong? _league_teamid; private string _name; private readonly List _members = new List(); private IExtension extensionObject; private bool ShouldSerializeleague_teamid() { return this.league_teamidSpecified; } private void Resetleague_teamid() { this.league_teamidSpecified = false; } private bool ShouldSerializename() { return this.nameSpecified; } private void Resetname() { this.nameSpecified = false; } IExtension IExtensible.GetExtensionObject(bool createIfMissing) { return Extensible.GetExtensionObject(ref this.extensionObject, createIfMissing); } } }