This commit is contained in:
2022-06-22 03:18:13 +00:00
parent 9e51fc18f9
commit cae8a82783
3 changed files with 48 additions and 4 deletions

View 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; }
}
}