RepositoryInfo.cs 694 B

1234567891011121314151617181920212223242526
  1. namespace MediaBrowser.Model.Updates
  2. {
  3. /// <summary>
  4. /// Class RepositoryInfo.
  5. /// </summary>
  6. public class RepositoryInfo
  7. {
  8. /// <summary>
  9. /// Gets or sets the name.
  10. /// </summary>
  11. /// <value>The name.</value>
  12. public string? Name { get; set; }
  13. /// <summary>
  14. /// Gets or sets the URL.
  15. /// </summary>
  16. /// <value>The URL.</value>
  17. public string? Url { get; set; }
  18. /// <summary>
  19. /// Gets or sets a value indicating whether the repository is enabled.
  20. /// </summary>
  21. /// <value><c>true</c> if enabled.</value>
  22. public bool Enabled { get; set; } = true;
  23. }
  24. }