mirror of
https://github.com/ShrlAlgo/RevitGen.git
synced 2026-03-07 17:28:54 +00:00
添加项目文件。
This commit is contained in:
13
RevitGen.Common/Attributes/CommandHandlerAttribute.cs
Normal file
13
RevitGen.Common/Attributes/CommandHandlerAttribute.cs
Normal 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
|
||||
{
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user