mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-07-11 00:32:52 +01:00
Reworked CategoryInfo and added ImageType enum
This commit is contained in:
parent
45cde97a58
commit
7d48e20aea
@@ -2,16 +2,14 @@
|
||||
namespace MediaBrowser.Model.Entities
|
||||
{
|
||||
/// <summary>
|
||||
/// This is a stub class used by the api to get IBN types in a compact format
|
||||
/// This is a stub class used by the api to get IBN types along with their item counts
|
||||
/// </summary>
|
||||
public class CategoryInfo
|
||||
public class CategoryInfo<T>
|
||||
{
|
||||
/// <summary>
|
||||
/// The name of the genre, year, studio, etc
|
||||
/// The actual genre, year, studio, etc
|
||||
/// </summary>
|
||||
public string Name { get; set; }
|
||||
|
||||
public string PrimaryImagePath { get; set; }
|
||||
public T Item { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// The number of items that have the genre, year, studio, etc
|
||||
|
||||
Reference in New Issue
Block a user