2013-09-10 20:23:41 +00:00
|
|
|
|
using System.Runtime.Serialization;
|
|
|
|
|
using MediaBrowser.Model.Dto;
|
2013-09-10 18:56:00 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
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-09-10 18:56:00 +00:00
|
|
|
|
public Year()
|
|
|
|
|
{
|
2013-12-02 21:46:22 +00:00
|
|
|
|
UserItemCountList = new List<ItemByNameCounts>();
|
2013-09-10 18:56:00 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-09-10 20:23:41 +00:00
|
|
|
|
[IgnoreDataMember]
|
2013-12-02 21:46:22 +00:00
|
|
|
|
public List<ItemByNameCounts> UserItemCountList { get; set; }
|
2013-09-10 18:56:00 +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
|
|
|
|
}
|
|
|
|
|
}
|