Files
Shrlalgo.RvKits/RevitLess/DocumentType.cs

15 lines
179 B
C#
Raw Normal View History

2025-07-11 09:20:23 +08:00

namespace RevitLess
{
/// <summary>Types of Revit documents.</summary>
public enum DocumentType
{
Project,
Family,
ProjectTemplate,
FamilyTemplate,
Unknown
}
}