ReportItem.cs 915 B

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