using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace FLY.OBJComponents.Common { /// /// 标题 特性 /// [AttributeUsage(AttributeTargets.Property)] public class HeaderAttribute : Attribute { public HeaderAttribute(string header) { Header = header; } public string Header { get; private set; } } }