using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
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; }	
	}
}