aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Dto/ItemIndex.cs
blob: 96cef622b2e410ff51a21063362dbeaa99cc431b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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; }
    }
}