jellyfin/MediaBrowser.Model/Entities/MBRegistrationRecord.cs

25 lines
777 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; }
}
public class SupporterInfo
{
public string Email { get; set; }
public string SupporterKey { get; set; }
public DateTime? ExpirationDate { get; set; }
public DateTime RegistrationDate { get; set; }
public string PlanType { get; set; }
public bool IsActiveSupporter { get; set; }
public bool IsExpiredSupporter { get; set; }
2013-02-21 02:33:05 +01:00
}
}