using System.Collections.Generic; namespace MediaBrowser.Api.Reports { public class ReportResult { public List> Rows { get; set; } public List Columns { get; set; } public ReportResult() { Rows = new List>(); Columns = new List(); } } }