jellyfin/MediaBrowser.Model/Entities/MBRegistrationRecord.cs

14 lines
383 B
C#
Raw Normal View History

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