aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2013-04-17 10:42:25 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2013-04-17 10:42:25 -0400
commitd59df69b5bd3a55099c356b2a34f3630ef9b8f00 (patch)
tree362c413b20e0e0e6b60d46ff2c25992e3c88e8c9 /MediaBrowser.Model
parenta5e2778f62380a601d0052faa34dd2b12f83e533 (diff)
added count api methods for studios and genres
Diffstat (limited to 'MediaBrowser.Model')
-rw-r--r--MediaBrowser.Model/Dto/ItemByNameCounts.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Dto/ItemByNameCounts.cs b/MediaBrowser.Model/Dto/ItemByNameCounts.cs
index 5175fa158..b650eb566 100644
--- a/MediaBrowser.Model/Dto/ItemByNameCounts.cs
+++ b/MediaBrowser.Model/Dto/ItemByNameCounts.cs
@@ -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; }
}
}