2013-02-21 01:33:05 +00:00
|
|
|
using System;
|
|
|
|
|
2013-06-10 16:57:30 +00:00
|
|
|
namespace MediaBrowser.Model.Entities
|
2013-02-21 01:33:05 +00:00
|
|
|
{
|
|
|
|
public class MBRegistrationRecord
|
|
|
|
{
|
2013-04-13 21:21:45 +00:00
|
|
|
public DateTime ExpirationDate { get; set; }
|
2014-08-31 19:15:33 +00:00
|
|
|
public bool IsRegistered { get; set; }
|
2013-04-13 21:21:45 +00:00
|
|
|
public bool RegChecked { get; set; }
|
|
|
|
public bool RegError { get; set; }
|
2014-08-31 19:15:33 +00:00
|
|
|
public bool TrialVersion { get; set; }
|
|
|
|
public bool IsValid { get; set; }
|
|
|
|
}
|
2013-02-21 01:33:05 +00:00
|
|
|
}
|