Chg fields to properties on MBRegistrationRecord
This commit is contained in:
parent
abed5b331b
commit
097f6a05c3
|
@ -4,10 +4,10 @@ namespace Mediabrowser.Model.Entities
|
||||||
{
|
{
|
||||||
public class MBRegistrationRecord
|
public class MBRegistrationRecord
|
||||||
{
|
{
|
||||||
public DateTime ExpirationDate = DateTime.MinValue;
|
public DateTime ExpirationDate { get; set; }
|
||||||
public bool IsRegistered = false;
|
public bool IsRegistered { get; set;}
|
||||||
public bool RegChecked = false;
|
public bool RegChecked { get; set; }
|
||||||
public bool RegError = false;
|
public bool RegError { get; set; }
|
||||||
private bool? _isInTrial;
|
private bool? _isInTrial;
|
||||||
public bool TrialVersion
|
public bool TrialVersion
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue
Block a user