19 lines
382 B
C#
19 lines
382 B
C#
|
|
namespace MediaBrowser.Controller.Entities
|
|
{
|
|
/// <summary>
|
|
/// Class Year
|
|
/// </summary>
|
|
public class Year : BaseItem
|
|
{
|
|
/// <summary>
|
|
/// Gets the user data key.
|
|
/// </summary>
|
|
/// <returns>System.String.</returns>
|
|
public override string GetUserDataKey()
|
|
{
|
|
return "Year-" + Name;
|
|
}
|
|
}
|
|
}
|