MBRegistrationRecord.cs 777 B

12345678910111213141516171819202122232425
  1. using System;
  2. namespace MediaBrowser.Model.Entities
  3. {
  4. public class MBRegistrationRecord
  5. {
  6. public DateTime ExpirationDate { get; set; }
  7. public bool IsRegistered { get; set; }
  8. public bool RegChecked { get; set; }
  9. public bool RegError { get; set; }
  10. public bool TrialVersion { get; set; }
  11. public bool IsValid { get; set; }
  12. }
  13. public class SupporterInfo
  14. {
  15. public string Email { get; set; }
  16. public string SupporterKey { get; set; }
  17. public DateTime? ExpirationDate { get; set; }
  18. public DateTime RegistrationDate { get; set; }
  19. public string PlanType { get; set; }
  20. public bool IsActiveSupporter { get; set; }
  21. public bool IsExpiredSupporter { get; set; }
  22. }
  23. }