MBRegistrationRecord.cs 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. using System;
  2. namespace Jellyfin.Api.Models.PluginDtos
  3. {
  4. /// <summary>
  5. /// MB Registration Record.
  6. /// </summary>
  7. public class MBRegistrationRecord
  8. {
  9. /// <summary>
  10. /// Gets or sets expiration date.
  11. /// </summary>
  12. public DateTime ExpirationDate { get; set; }
  13. /// <summary>
  14. /// Gets or sets a value indicating whether is registered.
  15. /// </summary>
  16. public bool IsRegistered { get; set; }
  17. /// <summary>
  18. /// Gets or sets a value indicating whether reg checked.
  19. /// </summary>
  20. public bool RegChecked { get; set; }
  21. /// <summary>
  22. /// Gets or sets a value indicating whether reg error.
  23. /// </summary>
  24. public bool RegError { get; set; }
  25. /// <summary>
  26. /// Gets or sets a value indicating whether trial version.
  27. /// </summary>
  28. public bool TrialVersion { get; set; }
  29. /// <summary>
  30. /// Gets or sets a value indicating whether is valid.
  31. /// </summary>
  32. public bool IsValid { get; set; }
  33. }
  34. }