13 lines
347 B
C#
13 lines
347 B
C#
using Autodesk.Revit.DB;
|
|
using Autodesk.Revit.UI;
|
|
|
|
namespace Szmedi.AIScriptRunner.Assists
|
|
{
|
|
public class IsAuthenticated : IExternalCommandAvailability
|
|
{
|
|
public bool IsCommandAvailable(UIApplication applicationData, CategorySet selectedCategories)
|
|
{
|
|
return GlobalVariables.IsAuthenticated;
|
|
}
|
|
}
|
|
} |