mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-23 09:14:45 +03:00
fix SA1513/SA1516
This commit is contained in:
@@ -115,24 +115,33 @@ namespace MediaBrowser.Api
|
||||
public class RegistrationInfo
|
||||
{
|
||||
public string Name { get; set; }
|
||||
|
||||
public DateTime ExpirationDate { get; set; }
|
||||
|
||||
public bool IsTrial { get; set; }
|
||||
|
||||
public bool IsRegistered { get; set; }
|
||||
}
|
||||
|
||||
public class MBRegistrationRecord
|
||||
{
|
||||
public DateTime ExpirationDate { get; set; }
|
||||
|
||||
public bool IsRegistered { get; set; }
|
||||
|
||||
public bool RegChecked { get; set; }
|
||||
|
||||
public bool RegError { get; set; }
|
||||
|
||||
public bool TrialVersion { get; set; }
|
||||
|
||||
public bool IsValid { get; set; }
|
||||
}
|
||||
|
||||
public class PluginSecurityInfo
|
||||
{
|
||||
public string SupporterKey { get; set; }
|
||||
|
||||
public bool IsMBSupporter { get; set; }
|
||||
}
|
||||
/// <summary>
|
||||
|
||||
Reference in New Issue
Block a user