2013-02-21 01:33:05 +00:00
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Entities
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Class Year
|
|
|
|
|
/// </summary>
|
2013-06-27 19:29:58 +00:00
|
|
|
|
public class Year : BaseItem, IItemByName
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
2013-04-13 18:02:30 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the user data key.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>System.String.</returns>
|
|
|
|
|
public override string GetUserDataKey()
|
|
|
|
|
{
|
2013-04-22 04:38:03 +00:00
|
|
|
|
return "Year-" + Name;
|
2013-04-13 18:02:30 +00:00
|
|
|
|
}
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|
|
|
|
|
}
|