RepositoryInfo.cs 468 B

1234567891011121314151617181920
  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. }
  19. }