ReportStatResult.cs 795 B

12345678910111213141516171819202122232425262728
  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> Encapsulates the result of a report stat. </summary>
  9. public class ReportStatResult
  10. {
  11. /// <summary>
  12. /// Initializes a new instance of the MediaBrowser.Api.Reports.ReportStatResult class. </summary>
  13. public ReportStatResult()
  14. {
  15. Groups = new List<ReportStatGroup>();
  16. TotalRecordCount = 0;
  17. }
  18. /// <summary> Gets or sets the groups. </summary>
  19. /// <value> The groups. </value>
  20. public List<ReportStatGroup> Groups { get; set; }
  21. /// <summary> Gets or sets the number of total records. </summary>
  22. /// <value> The total number of record count. </value>
  23. public int TotalRecordCount { get; set; }
  24. }
  25. }