添加项目文件。

This commit is contained in:
ShrlAlgo
2025-09-04 09:53:20 +08:00
parent 54b372165a
commit 5f24922f54
42 changed files with 5570 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
using System;
namespace AddInManager
{
public interface IAddinNode
{
bool Save { get; set; }
bool Hidden { get; set; }
}
}