This commit is contained in:
31
AyaNovaQBI/AyaNovaLicense.cs
Normal file
31
AyaNovaQBI/AyaNovaLicense.cs
Normal file
@@ -0,0 +1,31 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace AyaNovaQBI
|
||||
{
|
||||
internal class AyaNovaLicense
|
||||
{
|
||||
public string serverDbId { get; set; }
|
||||
public string licensedTo { get; set; }
|
||||
public string dbId { get; set; }
|
||||
public string keySerial { get; set; }
|
||||
public DateTime licenseExpiration { get; set; }
|
||||
public bool licenseWillExpire { get; set; }
|
||||
public bool maintenanceExpired { get; set; }
|
||||
public DateTime maintenanceExpiration { get; set; }
|
||||
|
||||
public List<AyaNovaLicenseFeatures> features { get; set; }
|
||||
}
|
||||
internal class AyaNovaLicenseFeatures
|
||||
{
|
||||
//name of feature / product
|
||||
public string Feature { get; set; }
|
||||
|
||||
//Optional count for items that require it
|
||||
public long Count { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user