using MediaBrowser.Model.Entities;
namespace MediaBrowser.Model.DTO
{
///
/// This is a stub class used by the api to get IBN types along with their item counts
///
public class IBNItem
{
///
/// The actual genre, year, studio, etc
///
public T Item { get; set; }
///
/// The number of items that have the genre, year, studio, etc
///
public int BaseItemCount { get; set; }
}
///
/// This is used by BaseItemContainer
///
public class BaseItemPerson
{
public PersonInfo PersonInfo { get; set; }
public bool HasImage { get; set; }
}
///
/// This is used by BaseItemContainer
///
public class BaseItemStudio
{
public string Name { get; set; }
public bool HasImage { get; set; }
}
}