16 lines
267 B
C#
16 lines
267 B
C#
using System;
|
|
|
|
namespace KGdev.BI3D.Revit.Common
|
|
{
|
|
public interface IAuthProvider
|
|
{
|
|
bool TryUpdateToken(string key);
|
|
|
|
bool ValidateToken(string token);
|
|
|
|
bool IsTrial(string token);
|
|
|
|
int LicenseTypeInt(string token);
|
|
}
|
|
}
|