2013-09-10 18:56:00 +00:00
|
|
|
|
using MediaBrowser.Model.Dto;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
2013-09-10 20:23:41 +00:00
|
|
|
|
using System.Runtime.Serialization;
|
2013-09-10 18:56:00 +00:00
|
|
|
|
|
2013-07-01 17:17:33 +00:00
|
|
|
|
namespace MediaBrowser.Controller.Entities
|
|
|
|
|
{
|
|
|
|
|
public class GameGenre : BaseItem, IItemByName
|
|
|
|
|
{
|
2013-09-10 18:56:00 +00:00
|
|
|
|
public GameGenre()
|
|
|
|
|
{
|
|
|
|
|
UserItemCounts = new Dictionary<Guid, ItemByNameCounts>();
|
|
|
|
|
}
|
|
|
|
|
|
2013-07-01 17:17:33 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the user data key.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>System.String.</returns>
|
|
|
|
|
public override string GetUserDataKey()
|
|
|
|
|
{
|
|
|
|
|
return "GameGenre-" + Name;
|
|
|
|
|
}
|
2013-09-10 18:56:00 +00:00
|
|
|
|
|
2013-09-10 20:23:41 +00:00
|
|
|
|
[IgnoreDataMember]
|
2013-09-10 18:56:00 +00:00
|
|
|
|
public Dictionary<Guid, ItemByNameCounts> UserItemCounts { get; set; }
|
2013-07-01 17:17:33 +00:00
|
|
|
|
}
|
|
|
|
|
}
|