添加项目文件。

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,19 @@
using System;
namespace AddInManager
{
[Flags]
public enum VisibilityMode
{
AlwaysVisible = 0,
NotVisibleInProject = 1,
NotVisibleInFamily = 2,
NotVisibleWhenNoActiveDocument = 4,
NotVisibleInArchitecture = 8,
NotVisibleInStructure = 16,
NotVisibleInMechanical = 32,
NotVisibleInElectrical = 64,
NotVisibleInPlumbing = 128,
NotVisibleInMEP = 224
}
}