You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
857 B
29 lines
857 B
using System;
|
|
|
|
namespace MediaBrowser.Model.Entities
|
|
{
|
|
public class MBRegistrationRecord
|
|
{
|
|
public DateTime ExpirationDate { get; set; }
|
|
public bool IsRegistered { get; set;}
|
|
public bool RegChecked { get; set; }
|
|
public bool RegError { get; set; }
|
|
private bool? _isInTrial;
|
|
public bool TrialVersion
|
|
{
|
|
get
|
|
{
|
|
if (_isInTrial == null)
|
|
{
|
|
if (!RegChecked) return false; //don't set this until we've successfully obtained exp date
|
|
_isInTrial = ExpirationDate > DateTime.Now;
|
|
}
|
|
return (_isInTrial.Value && !IsRegistered);
|
|
}
|
|
}
|
|
public bool IsValid
|
|
{
|
|
get { return !RegChecked || (IsRegistered || TrialVersion); }
|
|
}
|
|
}
|
|
} |