//------------------------------------------------------------------------------ // // This code was generated by a tool. // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // //------------------------------------------------------------------------------ using System; namespace BlendFile { [AttributeUsageAttribute(AttributeTargets.All)] public class DNAAttribute : System.Attribute { private int _OriginalIndex; public virtual int OriginalIndex { get { return this._OriginalIndex; } set { this._OriginalIndex = value; } } private string _OriginalName; public virtual string OriginalName { get { return this._OriginalName; } set { this._OriginalName = value; } } public DNAAttribute(int OriginalIndex, string OriginalName) { this._OriginalIndex = OriginalIndex; this._OriginalName = OriginalName; } } }