using MediaBrowser.Model.Dto;
using System;
using System.Collections.Generic;
namespace MediaBrowser.Controller.Entities
{
///
/// Class Year
///
public class Year : BaseItem, IItemByName
{
public Year()
{
ItemCounts = new ItemByNameCounts();
UserItemCounts = new Dictionary();
}
public ItemByNameCounts ItemCounts { get; set; }
public Dictionary UserItemCounts { get; set; }
///
/// Gets the user data key.
///
/// System.String.
public override string GetUserDataKey()
{
return "Year-" + Name;
}
}
}