case 4522

This commit is contained in:
2023-05-04 00:49:19 +00:00
parent 7efdf58bcf
commit 2116534503
4 changed files with 41 additions and 5 deletions

View File

@@ -271,6 +271,16 @@ namespace AyaNova.Core
}
public int LicenseExpirationDays
{
get
{
if (WillExpire)
return (int)(LicenseExpiration.ToUniversalTime() - DateTime.UtcNow).TotalDays;
else
return -1;//not expiring
}
}
public string LicenseFormat { get; set; }
public string Id { get; set; }