namespace MediaBrowser.Model.Entities
{
///
/// This is a stub class used by the api to get IBN types in a compact format
///
public class CategoryInfo
{
///
/// The name of the genre, year, studio, etc
///
public string Name { get; set; }
public string PrimaryImagePath { get; set; }
///
/// The number of items that have the genre, year, studio, etc
///
public int ItemCount { get; set; }
}
}