jellyfin/MediaBrowser.Model/Entities/MBRegistrationRecord.cs

14 lines
383 B
C#
Raw Normal View History

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