123456789101112131415161718192021222324 |
- /*-------------------------------------------------------------------------
- * 功能描述: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
- {
- /// <summary>
- /// 是否自动解析相关类
- /// </summary>
- public bool Use { get; set; } = true;
- }
- }
|