ExternalUrl.cs 474 B

1234567891011121314151617181920
  1. #nullable disable
  2. #pragma warning disable CS1591
  3. namespace MediaBrowser.Model.Providers
  4. {
  5. public class ExternalUrl
  6. {
  7. /// <summary>
  8. /// Gets or sets the name.
  9. /// </summary>
  10. /// <value>The name.</value>
  11. public string Name { get; set; }
  12. /// <summary>
  13. /// Gets or sets the type of the item.
  14. /// </summary>
  15. /// <value>The type of the item.</value>
  16. public string Url { get; set; }
  17. }
  18. }