aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Api/Reports/Stat/ReportStatResult.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Api/Reports/Stat/ReportStatResult.cs')
-rw-r--r--MediaBrowser.Api/Reports/Stat/ReportStatResult.cs28
1 files changed, 28 insertions, 0 deletions
diff --git a/MediaBrowser.Api/Reports/Stat/ReportStatResult.cs b/MediaBrowser.Api/Reports/Stat/ReportStatResult.cs
new file mode 100644
index 000000000..66d5f16a4
--- /dev/null
+++ b/MediaBrowser.Api/Reports/Stat/ReportStatResult.cs
@@ -0,0 +1,28 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace MediaBrowser.Api.Reports
+{
+ /// <summary> Encapsulates the result of a report stat. </summary>
+ public class ReportStatResult
+ {
+ /// <summary>
+ /// Initializes a new instance of the MediaBrowser.Api.Reports.ReportStatResult class. </summary>
+ public ReportStatResult()
+ {
+ Groups = new List<ReportStatGroup>();
+ TotalRecordCount = 0;
+ }
+
+ /// <summary> Gets or sets the groups. </summary>
+ /// <value> The groups. </value>
+ public List<ReportStatGroup> Groups { get; set; }
+
+ /// <summary> Gets or sets the number of total records. </summary>
+ /// <value> The total number of record count. </value>
+ public int TotalRecordCount { get; set; }
+ }
+}