aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Api/Reports/Data/ReportItem.cs
diff options
context:
space:
mode:
authorLuke <luke.pulverenti@gmail.com>2015-05-13 11:18:07 -0400
committerLuke <luke.pulverenti@gmail.com>2015-05-13 11:18:07 -0400
commitbaa59d900619f21e3bc76eb2acce15cfee7a87fb (patch)
treecbcf129afc5c2a8a31d8329680eac2a473d8f962 /MediaBrowser.Api/Reports/Data/ReportItem.cs
parent6aa3a37153d04de91799d9cfc792e1f503eefe95 (diff)
parentd3fd3e30d713e6f30c2ee2c1faa6930855951249 (diff)
Merge pull request #1086 from t-andre/dev
Report manager implementation
Diffstat (limited to 'MediaBrowser.Api/Reports/Data/ReportItem.cs')
-rw-r--r--MediaBrowser.Api/Reports/Data/ReportItem.cs34
1 files changed, 34 insertions, 0 deletions
diff --git a/MediaBrowser.Api/Reports/Data/ReportItem.cs b/MediaBrowser.Api/Reports/Data/ReportItem.cs
new file mode 100644
index 000000000..06d0b0c46
--- /dev/null
+++ b/MediaBrowser.Api/Reports/Data/ReportItem.cs
@@ -0,0 +1,34 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace MediaBrowser.Api.Reports
+{
+ /// <summary> A report item. </summary>
+ public class ReportItem
+ {
+ /// <summary> Gets or sets the identifier. </summary>
+ /// <value> The identifier. </value>
+ public string Id { get; set; }
+
+ /// <summary> Gets or sets the name. </summary>
+ /// <value> The name. </value>
+ public string Name { get; set; }
+
+ public string Image { get; set; }
+
+ /// <summary> Gets or sets the custom tag. </summary>
+ /// <value> The custom tag. </value>
+ public string CustomTag { 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;
+ }
+ }
+}