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