namespace MediaBrowser.Model.Entities
{
///
/// This is a stub class used by the api to get IBN types along with their item counts
///
public class CategoryInfo
{
///
/// The actual genre, year, studio, etc
///
public T Item { get; set; }
///
/// The number of items that have the genre, year, studio, etc
///
public int ItemCount { get; set; }
}
}