ReportStatItem.cs 732 B

1234567891011121314151617181920212223242526272829
  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 stat item. </summary>
  9. public class ReportStatItem
  10. {
  11. /// <summary> Gets or sets the name. </summary>
  12. /// <value> The name. </value>
  13. public string Name { get; set; }
  14. /// <summary> Gets or sets the image. </summary>
  15. /// <value> The image. </value>
  16. public string Image { get; set; }
  17. /// <summary> Gets or sets the value. </summary>
  18. /// <value> The value. </value>
  19. public string Value { get; set; }
  20. /// <summary> Gets or sets the identifier. </summary>
  21. /// <value> The identifier. </value>
  22. public string Id { get; set; }
  23. }
  24. }