using System.Collections.Generic; namespace MediaBrowser.Api.Reports { /// Encapsulates the result of a report stat. public class ReportStatResult { /// /// Initializes a new instance of the MediaBrowser.Api.Reports.ReportStatResult class. public ReportStatResult() { Groups = new List(); TotalRecordCount = 0; } /// Gets or sets the groups. /// The groups. public List Groups { get; set; } /// Gets or sets the number of total records. /// The total number of record count. public int TotalRecordCount { get; set; } } }