ReportItem.cs 798 B

12345678910111213141516171819202122232425262728
  1. namespace MediaBrowser.Api.Reports
  2. {
  3. /// <summary> A report item. </summary>
  4. public class ReportItem
  5. {
  6. /// <summary> Gets or sets the identifier. </summary>
  7. /// <value> The identifier. </value>
  8. public string Id { get; set; }
  9. /// <summary> Gets or sets the name. </summary>
  10. /// <value> The name. </value>
  11. public string Name { get; set; }
  12. public string Image { get; set; }
  13. /// <summary> Gets or sets the custom tag. </summary>
  14. /// <value> The custom tag. </value>
  15. public string CustomTag { get; set; }
  16. /// <summary> Returns a string that represents the current object. </summary>
  17. /// <returns> A string that represents the current object. </returns>
  18. /// <seealso cref="M:System.Object.ToString()"/>
  19. public override string ToString()
  20. {
  21. return Name;
  22. }
  23. }
  24. }