/*------------------------------------------------------------------------- * 功能描述:AutoParseButtonAttribute * 作者:xulisong * 创建时间: 2019/7/25 12:05:21 * 版本号:v1.0 * -------------------------------------------------------------------------*/ using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace FWindSoft.Revit.Menu { [AttributeUsage(AttributeTargets.Assembly)] public class AutoParseButtonAttribute : Attribute { /// /// 是否自动解析相关类 /// public bool Use { get; set; } = true; } }