2013-06-22 18:15:31 +00:00
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Entities
|
|
|
|
|
{
|
|
|
|
|
public class Game : BaseItem
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the type of the media.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The type of the media.</value>
|
|
|
|
|
public override string MediaType
|
|
|
|
|
{
|
|
|
|
|
get { return Model.Entities.MediaType.Game; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the players supported.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The players supported.</value>
|
|
|
|
|
public int? PlayersSupported { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the game system.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The game system.</value>
|
|
|
|
|
public string GameSystem { get; set; }
|
2013-07-22 17:07:39 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
///
|
|
|
|
|
/// </summary>
|
|
|
|
|
public override string MetaLocation
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
2013-08-15 19:09:52 +00:00
|
|
|
|
return System.IO.Path.GetDirectoryName(Path);
|
2013-07-22 17:07:39 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
///
|
|
|
|
|
/// </summary>
|
|
|
|
|
protected override bool UseParentPathToCreateResolveArgs
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return !IsInMixedFolder;
|
|
|
|
|
}
|
|
|
|
|
}
|
2013-06-22 18:15:31 +00:00
|
|
|
|
}
|
|
|
|
|
}
|