MBRegistrationRecord.cs 1.1 KB

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