aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Api/Reports/Model/ReportGroup.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2017-09-16 00:14:10 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2017-09-16 00:14:10 -0400
commitbc643d4dda52cfa1994069e11554c88840bb13dc (patch)
tree1ad9711381ddf20a61dedf068ca073de1c37a88c /MediaBrowser.Api/Reports/Model/ReportGroup.cs
parentf3096b83403d6ad8f5a087d46d04d889f96740a7 (diff)
move reports to plugin
Diffstat (limited to 'MediaBrowser.Api/Reports/Model/ReportGroup.cs')
-rw-r--r--MediaBrowser.Api/Reports/Model/ReportGroup.cs40
1 files changed, 0 insertions, 40 deletions
diff --git a/MediaBrowser.Api/Reports/Model/ReportGroup.cs b/MediaBrowser.Api/Reports/Model/ReportGroup.cs
deleted file mode 100644
index 06ffa9082..000000000
--- a/MediaBrowser.Api/Reports/Model/ReportGroup.cs
+++ /dev/null
@@ -1,40 +0,0 @@
-using System.Collections.Generic;
-
-namespace MediaBrowser.Api.Reports
-{
-
- /// <summary> A report group. </summary>
- public class ReportGroup
- {
- /// <summary>
- /// Initializes a new instance of the MediaBrowser.Api.Reports.ReportGroup class. </summary>
- public ReportGroup()
- {
- Rows = new List<ReportRow>();
- }
-
- /// <summary>
- /// Initializes a new instance of the MediaBrowser.Api.Reports.ReportGroup class. </summary>
- /// <param name="rows"> The rows. </param>
- public ReportGroup(List<ReportRow> rows)
- {
- Rows = rows;
- }
-
- /// <summary> Gets or sets the name. </summary>
- /// <value> The name. </value>
- public string Name { get; set; }
-
- /// <summary> Gets or sets the rows. </summary>
- /// <value> The rows. </value>
- public List<ReportRow> Rows { get; set; }
-
- /// <summary> Returns a string that represents the current object. </summary>
- /// <returns> A string that represents the current object. </returns>
- /// <seealso cref="M:System.Object.ToString()"/>
- public override string ToString()
- {
- return Name;
- }
- }
-}