using System; namespace NBC.Asset.Editor { /// /// 自定义名称 /// [AttributeUsage(AttributeTargets.All, Inherited = false)] public sealed class DisplayNameAttribute : Attribute { public DisplayNameAttribute(string name) { showName = name; } public string showName; } }