Files
jellyfin-jellyfin-1/MediaBrowser.Model/Entities/MBRegistrationRecord.cs

14 lines
383 B
C#
Raw Normal View History

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