2013-09-10 13:23:41 -07:00
|
|
|
|
using System.Runtime.Serialization;
|
|
|
|
|
using MediaBrowser.Model.Dto;
|
2013-09-10 11:56:00 -07:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
2013-02-20 18:33:05 -07:00
|
|
|
|
namespace MediaBrowser.Controller.Entities
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Class Studio
|
|
|
|
|
/// </summary>
|
2013-06-27 12:29:58 -07:00
|
|
|
|
public class Studio : BaseItem, IItemByName
|
2013-02-20 18:33:05 -07:00
|
|
|
|
{
|
2013-09-10 11:56:00 -07:00
|
|
|
|
public Studio()
|
|
|
|
|
{
|
2013-12-02 14:46:22 -07:00
|
|
|
|
UserItemCountList = new List<ItemByNameCounts>();
|
2013-09-10 11:56:00 -07:00
|
|
|
|
}
|
|
|
|
|
|
2013-04-13 11:02:30 -07:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the user data key.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>System.String.</returns>
|
|
|
|
|
public override string GetUserDataKey()
|
|
|
|
|
{
|
2013-04-21 21:38:03 -07:00
|
|
|
|
return "Studio-" + Name;
|
2013-04-13 11:02:30 -07:00
|
|
|
|
}
|
2013-09-10 11:56:00 -07:00
|
|
|
|
|
2013-09-10 13:23:41 -07:00
|
|
|
|
[IgnoreDataMember]
|
2013-12-02 14:46:22 -07:00
|
|
|
|
public List<ItemByNameCounts> UserItemCountList { get; set; }
|
2013-02-20 18:33:05 -07:00
|
|
|
|
}
|
|
|
|
|
}
|