mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-07-11 00:32:52 +01:00
All calls to get items now require passing in a userId. Made the model project portable. Also filled in more api calls.
This commit is contained in:
parent
baedafbeb9
commit
6fbd5cf464
21
MediaBrowser.Model/Entities/CategoryInfo.cs
Normal file
21
MediaBrowser.Model/Entities/CategoryInfo.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
|
||||
namespace MediaBrowser.Model.Entities
|
||||
{
|
||||
/// <summary>
|
||||
/// This is a stub class used by the api to get IBN types in a compact format
|
||||
/// </summary>
|
||||
public class CategoryInfo
|
||||
{
|
||||
/// <summary>
|
||||
/// The name of the genre, year, studio, etc
|
||||
/// </summary>
|
||||
public string Name { get; set; }
|
||||
|
||||
public string PrimaryImagePath { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// The number of items that have the genre, year, studio, etc
|
||||
/// </summary>
|
||||
public int ItemCount { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user