namespace MediaBrowser.Api.Reports
{
/// A report stat item.
public class ReportStatItem
{
/// Gets or sets the name.
/// The name.
public string Name { get; set; }
/// Gets or sets the image.
/// The image.
public string Image { get; set; }
/// Gets or sets the value.
/// The value.
public string Value { get; set; }
/// Gets or sets the identifier.
/// The identifier.
public string Id { get; set; }
}
}