ReportStatResult.cs 713 B

123456789101112131415161718192021222324
  1. using System.Collections.Generic;
  2. namespace MediaBrowser.Api.Reports
  3. {
  4. /// <summary> Encapsulates the result of a report stat. </summary>
  5. public class ReportStatResult
  6. {
  7. /// <summary>
  8. /// Initializes a new instance of the MediaBrowser.Api.Reports.ReportStatResult class. </summary>
  9. public ReportStatResult()
  10. {
  11. Groups = new List<ReportStatGroup>();
  12. TotalRecordCount = 0;
  13. }
  14. /// <summary> Gets or sets the groups. </summary>
  15. /// <value> The groups. </value>
  16. public List<ReportStatGroup> Groups { get; set; }
  17. /// <summary> Gets or sets the number of total records. </summary>
  18. /// <value> The total number of record count. </value>
  19. public int TotalRecordCount { get; set; }
  20. }
  21. }