namespace MediaBrowser.Api.Reports
{
/// A report item.
public class ReportItem
{
/// Gets or sets the identifier.
/// The identifier.
public string Id { get; set; }
/// Gets or sets the name.
/// The name.
public string Name { get; set; }
public string Image { get; set; }
/// Gets or sets the custom tag.
/// The custom tag.
public string CustomTag { get; set; }
/// Returns a string that represents the current object.
/// A string that represents the current object.
///
public override string ToString()
{
return Name;
}
}
}