using System.Collections.Generic;
namespace MediaBrowser.Api.Reports
{
/// A report group.
public class ReportGroup
{
///
/// Initializes a new instance of the MediaBrowser.Api.Reports.ReportGroup class.
public ReportGroup()
{
Rows = new List();
}
///
/// Initializes a new instance of the MediaBrowser.Api.Reports.ReportGroup class.
/// The rows.
public ReportGroup(List rows)
{
Rows = rows;
}
/// Gets or sets the name.
/// The name.
public string Name { get; set; }
/// Gets or sets the rows.
/// The rows.
public List Rows { get; set; }
/// Returns a string that represents the current object.
/// A string that represents the current object.
///
public override string ToString()
{
return Name;
}
}
}