From 1e07dbec63bced51857e67b00941b91ca86a7f77 Mon Sep 17 00:00:00 2001 From: Tavares André Date: Thu, 11 Jun 2015 20:25:12 +0200 Subject: Reports - Add Users activities --- MediaBrowser.Api/Reports/Model/ReportGroup.cs | 44 +++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 MediaBrowser.Api/Reports/Model/ReportGroup.cs (limited to 'MediaBrowser.Api/Reports/Model/ReportGroup.cs') diff --git a/MediaBrowser.Api/Reports/Model/ReportGroup.cs b/MediaBrowser.Api/Reports/Model/ReportGroup.cs new file mode 100644 index 0000000000..49c76c7ba3 --- /dev/null +++ b/MediaBrowser.Api/Reports/Model/ReportGroup.cs @@ -0,0 +1,44 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +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; + } + } +} -- cgit v1.2.3