ReportResult.cs 378 B

12345678910111213141516
  1. using System.Collections.Generic;
  2. namespace MediaBrowser.Api.Reports
  3. {
  4. public class ReportResult
  5. {
  6. public List<List<string>> Rows { get; set; }
  7. public List<ReportFieldType> Columns { get; set; }
  8. public ReportResult()
  9. {
  10. Rows = new List<List<string>>();
  11. Columns = new List<ReportFieldType>();
  12. }
  13. }
  14. }