updated nuget + subtitle changes

This commit is contained in:
Luke Pulverenti
2013-10-05 23:03:08 -04:00
parent 3fbf08b882
commit 863f123f3c
14 changed files with 164 additions and 11 deletions

View File

@@ -0,0 +1,21 @@

namespace MediaBrowser.Model.Dto
{
/// <summary>
/// Class ItemIndex
/// </summary>
public class ItemIndex
{
/// <summary>
/// Gets or sets the name.
/// </summary>
/// <value>The name.</value>
public string Name { get; set; }
/// <summary>
/// Gets or sets the item count.
/// </summary>
/// <value>The item count.</value>
public int ItemCount { get; set; }
}
}