dll integration

This commit is contained in:
2025-09-12 09:04:23 -04:00
parent dcbb25ca9e
commit 08cddf7799
57 changed files with 3293 additions and 1 deletions
@@ -0,0 +1,40 @@
using System;
namespace Emby.Security;
public class RegRecord
{
public string featId { get; set; }
public bool registered { get; set; }
public DateTime expDate { get; set; }
public string key { get; set; }
public DateTime lastChecked { get; set; }
public bool isTrial
{
get
{
if (expDate > DateTime.UtcNow)
{
return !registered;
}
return false;
}
}
public bool isValid
{
get
{
if (!isTrial)
{
return registered;
}
return true;
}
}
}