You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
using MediaBrowser.Model.Dto;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Entities
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Class Year
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class Year : BaseItem, IItemByName
|
|
|
|
|
{
|
|
|
|
|
public Year()
|
|
|
|
|
{
|
|
|
|
|
ItemCounts = new ItemByNameCounts();
|
|
|
|
|
UserItemCounts = new Dictionary<Guid, ItemByNameCounts>();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public ItemByNameCounts ItemCounts { get; set; }
|
|
|
|
|
|
|
|
|
|
public Dictionary<Guid, ItemByNameCounts> UserItemCounts { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the user data key.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>System.String.</returns>
|
|
|
|
|
public override string GetUserDataKey()
|
|
|
|
|
{
|
|
|
|
|
return "Year-" + Name;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|