RepositoryInfo.cs 481 B

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