RepositoryInfo.cs 499 B

1234567891011121314151617181920212223
  1. #nullable disable
  2. using System;
  3. namespace MediaBrowser.Model.Updates
  4. {
  5. /// <summary>
  6. /// Class RepositoryInfo.
  7. /// </summary>
  8. public class RepositoryInfo
  9. {
  10. /// <summary>
  11. /// Gets or sets the name.
  12. /// </summary>
  13. /// <value>The name.</value>
  14. public string Name { get; set; }
  15. /// <summary>
  16. /// Gets or sets the URL.
  17. /// </summary>
  18. /// <value>The URL.</value>
  19. public string Url { get; set; }
  20. }
  21. }