添加项目文件。

This commit is contained in:
GG Z
2025-09-03 21:46:26 +08:00
parent 717d50d2d3
commit da46257be2
16 changed files with 913 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
using System;
namespace RevitGen.Attributes
{
/// <summary>
/// 标记一个方法作为 RevitGen 命令的执行逻辑入口点。
/// ★★ 这个方法必须是无参数的,并且返回 void。★★
/// </summary>
[AttributeUsage(AttributeTargets.Method, Inherited = false, AllowMultiple = false)]
public sealed class CommandHandlerAttribute : Attribute
{
}
}