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