using System; using System.Collections.Generic; using ProtoBuf; namespace KKSG { [ProtoContract(Name = "PkRoleInfoNtf")] [Serializable] public class PkRoleInfoNtf : IExtensible { [ProtoMember(1, Name = "pkroleinfo", DataFormat = DataFormat.Default)] public List pkroleinfo { get { return this._pkroleinfo; } } private readonly List _pkroleinfo = new List(); private IExtension extensionObject; IExtension IExtensible.GetExtensionObject(bool createIfMissing) { return Extensible.GetExtensionObject(ref this.extensionObject, createIfMissing); } } }