diff options
Diffstat (limited to 'MediaBrowser.Api/Reports/ReportResult.cs')
| -rw-r--r-- | MediaBrowser.Api/Reports/ReportResult.cs | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/MediaBrowser.Api/Reports/ReportResult.cs b/MediaBrowser.Api/Reports/ReportResult.cs new file mode 100644 index 000000000..c033ae8fb --- /dev/null +++ b/MediaBrowser.Api/Reports/ReportResult.cs @@ -0,0 +1,16 @@ +using System.Collections.Generic; + +namespace MediaBrowser.Api.Reports +{ + public class ReportResult + { + public List<List<string>> Rows { get; set; } + public List<ReportFieldType> Columns { get; set; } + + public ReportResult() + { + Rows = new List<List<string>>(); + Columns = new List<ReportFieldType>(); + } + } +} |
