blob: 00176fb34486e7e391ee214c61772002eaec480e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
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; }
public bool TrialVersion { get; set; }
public bool IsValid { get; set; }
}
}
|