ExternalIdInfo.cs 983 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. 
  2. namespace MediaBrowser.Model.Providers
  3. {
  4. public class ExternalIdInfo
  5. {
  6. /// <summary>
  7. /// Gets or sets the name.
  8. /// </summary>
  9. /// <value>The name.</value>
  10. public string Name { get; set; }
  11. /// <summary>
  12. /// Gets or sets the key.
  13. /// </summary>
  14. /// <value>The key.</value>
  15. public string Key { get; set; }
  16. /// <summary>
  17. /// Gets or sets the URL format string.
  18. /// </summary>
  19. /// <value>The URL format string.</value>
  20. public string UrlFormatString { get; set; }
  21. }
  22. public class ExternalUrl
  23. {
  24. /// <summary>
  25. /// Gets or sets the name.
  26. /// </summary>
  27. /// <value>The name.</value>
  28. public string Name { get; set; }
  29. /// <summary>
  30. /// Gets or sets the type of the item.
  31. /// </summary>
  32. /// <value>The type of the item.</value>
  33. public string Url { get; set; }
  34. }
  35. }