You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
77 lines
2.4 KiB
77 lines
2.4 KiB
using System.Collections.Generic;
|
|
|
|
namespace MediaBrowser.Model.Dto
|
|
{
|
|
/// <summary>
|
|
/// Class LibrarySummary
|
|
/// </summary>
|
|
public class ItemCounts
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the movie count.
|
|
/// </summary>
|
|
/// <value>The movie count.</value>
|
|
public int MovieCount { get; set; }
|
|
/// <summary>
|
|
/// Gets or sets the series count.
|
|
/// </summary>
|
|
/// <value>The series count.</value>
|
|
public int SeriesCount { get; set; }
|
|
/// <summary>
|
|
/// Gets or sets the episode count.
|
|
/// </summary>
|
|
/// <value>The episode count.</value>
|
|
public int EpisodeCount { get; set; }
|
|
/// <summary>
|
|
/// Gets or sets the game count.
|
|
/// </summary>
|
|
/// <value>The game count.</value>
|
|
public int GameCount { get; set; }
|
|
/// <summary>
|
|
/// Gets or sets the game system count.
|
|
/// </summary>
|
|
/// <value>The game system count.</value>
|
|
public int GameSystemCount { get; set; }
|
|
/// <summary>
|
|
/// Gets or sets the trailer count.
|
|
/// </summary>
|
|
/// <value>The trailer count.</value>
|
|
public int TrailerCount { get; set; }
|
|
/// <summary>
|
|
/// Gets or sets the song count.
|
|
/// </summary>
|
|
/// <value>The song count.</value>
|
|
public int SongCount { get; set; }
|
|
/// <summary>
|
|
/// Gets or sets the album count.
|
|
/// </summary>
|
|
/// <value>The album count.</value>
|
|
public int AlbumCount { get; set; }
|
|
/// <summary>
|
|
/// Gets or sets the music video count.
|
|
/// </summary>
|
|
/// <value>The music video count.</value>
|
|
public int MusicVideoCount { get; set; }
|
|
/// <summary>
|
|
/// Gets or sets the box set count.
|
|
/// </summary>
|
|
/// <value>The box set count.</value>
|
|
public int BoxSetCount { get; set; }
|
|
/// <summary>
|
|
/// Gets or sets the book count.
|
|
/// </summary>
|
|
/// <value>The book count.</value>
|
|
public int BookCount { get; set; }
|
|
/// <summary>
|
|
/// Gets or sets the unique types.
|
|
/// </summary>
|
|
/// <value>The unique types.</value>
|
|
public List<string> UniqueTypes { get; set; }
|
|
|
|
public ItemCounts()
|
|
{
|
|
UniqueTypes = new List<string>();
|
|
}
|
|
}
|
|
}
|