added count api methods for studios and genres

This commit is contained in:
Luke Pulverenti
2013-04-17 10:42:25 -04:00
parent a5e2778f62
commit d59df69b5b
5 changed files with 141 additions and 1 deletions

View File

@@ -31,5 +31,20 @@ namespace MediaBrowser.Model.Dto
/// </summary>
/// <value>The game count.</value>
public int GameCount { 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; }
}
}