16 lines
266 B
C#
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; }
|
|||
|
|
}
|
|||
|
|
}
|