aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Api/Reports/Model/ReportItem.cs
blob: 8d53dd9a1cdc2f722116eacdd91012b909c4841e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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;
		}
	}
}