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