添加项目文件。

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

13
AddInManager/AddinType.cs Normal file
View File

@@ -0,0 +1,13 @@
using System;
namespace AddInManager
{
[Flags]
public enum AddinType
{
Invalid = 0,
Command = 1,
Application = 2,
Mixed = 3
}
}