2012-07-16 16:50:44 +00:00
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Model.Entities
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
2012-07-30 19:03:07 +00:00
|
|
|
|
/// This is a stub class used by the api to get IBN types along with their item counts
|
2012-07-16 16:50:44 +00:00
|
|
|
|
/// </summary>
|
2012-07-30 19:03:07 +00:00
|
|
|
|
public class CategoryInfo<T>
|
2012-07-16 16:50:44 +00:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
2012-07-30 19:03:07 +00:00
|
|
|
|
/// The actual genre, year, studio, etc
|
2012-07-16 16:50:44 +00:00
|
|
|
|
/// </summary>
|
2012-07-30 19:03:07 +00:00
|
|
|
|
public T Item { get; set; }
|
2012-07-16 16:50:44 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The number of items that have the genre, year, studio, etc
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int ItemCount { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|