Files

13 lines
192 B
C#
Raw Permalink Normal View History

2026-02-12 21:29:00 +08:00
namespace ShrlAlgoStudio.RevitLess
2025-07-11 09:20:23 +08:00
{
/// <summary>Types of Revit documents.</summary>
public enum DocumentType
{
Project,
Family,
ProjectTemplate,
FamilyTemplate,
Unknown
}
}