RegistrationInfo.cs 983 B

12345678910111213141516171819202122232425262728
  1. using System;
  2. namespace MediaBrowser.Model.Registration
  3. {
  4. public class RegistrationInfo
  5. {
  6. /// <summary>
  7. /// Gets or sets the name.
  8. /// </summary>
  9. /// <value>The name.</value>
  10. public string Name { get; set; }
  11. /// <summary>
  12. /// Gets or sets the expiration date.
  13. /// </summary>
  14. /// <value>The expiration date.</value>
  15. public DateTime ExpirationDate { get; set; }
  16. /// <summary>
  17. /// Gets or sets a value indicating whether this instance is trial.
  18. /// </summary>
  19. /// <value><c>true</c> if this instance is trial; otherwise, <c>false</c>.</value>
  20. public bool IsTrial { get; set; }
  21. /// <summary>
  22. /// Gets or sets a value indicating whether this instance is registered.
  23. /// </summary>
  24. /// <value><c>true</c> if this instance is registered; otherwise, <c>false</c>.</value>
  25. public bool IsRegistered { get; set; }
  26. }
  27. }