Files
KGdev.BI3D.Revit.Addin/KGdev.BI3D.Revit.Common/IConstantsProvider.cs
2024-01-08 09:30:50 +08:00

16 lines
266 B
C#

using System;
namespace KGdev.BI3D.Revit.Common
{
public interface IConstantsProvider
{
string ProductId { get; }
string PurchaseUrl { get; }
string ViewerAndExamplesFolderName { get; }
string TrialKey { get; }
}
}