2013-12-02 21:46:22 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
2013-04-17 05:36:56 +00:00
|
|
|
|
namespace MediaBrowser.Model.Dto
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Class ItemByNameCounts
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class ItemByNameCounts
|
|
|
|
|
{
|
2014-05-08 20:09:53 +00:00
|
|
|
|
public string UserId { get; set; }
|
2013-12-02 21:46:22 +00:00
|
|
|
|
|
2013-04-17 05:36:56 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the total count.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The total count.</value>
|
|
|
|
|
public int TotalCount { get; set; }
|
2013-09-10 18:56:00 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the adult video count.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The adult video count.</value>
|
2013-07-16 18:47:05 +00:00
|
|
|
|
public int AdultVideoCount { get; set; }
|
2013-04-17 05:36:56 +00:00
|
|
|
|
/// <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>
|
2013-05-04 04:38:38 +00:00
|
|
|
|
/// Gets or sets the episode count.
|
2013-04-17 05:36:56 +00:00
|
|
|
|
/// </summary>
|
2013-05-04 04:38:38 +00:00
|
|
|
|
/// <value>The episode count.</value>
|
|
|
|
|
public int EpisodeCount { get; set; }
|
2013-04-17 05:36:56 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the game count.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The game count.</value>
|
|
|
|
|
public int GameCount { get; set; }
|
2013-04-17 14:42:25 +00:00
|
|
|
|
/// <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; }
|
2013-05-28 01:59:26 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the music video count.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The music video count.</value>
|
|
|
|
|
public int MusicVideoCount { get; set; }
|
2013-04-17 05:36:56 +00:00
|
|
|
|
}
|
|
|
|
|
}
|