aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2013-09-19 16:36:45 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2013-09-19 16:36:45 -0400
commit4a1d8771a80c805dfb27b119a33e14f99c9e0812 (patch)
tree14acc52ecea660d0cb5b67f3326c3cdf8a11bf3c
parent816f0228ab4eec7a359a554dc2bd370ce333d000 (diff)
added multipart game properties
-rw-r--r--MediaBrowser.Controller/Entities/Game.cs19
1 files changed, 18 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Entities/Game.cs b/MediaBrowser.Controller/Entities/Game.cs
index 9a787b3d3..ef115c691 100644
--- a/MediaBrowser.Controller/Entities/Game.cs
+++ b/MediaBrowser.Controller/Entities/Game.cs
@@ -1,8 +1,14 @@
-
+using System.Collections.Generic;
+
namespace MediaBrowser.Controller.Entities
{
public class Game : BaseItem
{
+ public Game()
+ {
+ MultiPartGameFiles = new List<string>();
+ }
+
/// <summary>
/// Gets the type of the media.
/// </summary>
@@ -36,6 +42,17 @@ namespace MediaBrowser.Controller.Entities
}
/// <summary>
+ /// Gets or sets a value indicating whether this instance is multi part.
+ /// </summary>
+ /// <value><c>true</c> if this instance is multi part; otherwise, <c>false</c>.</value>
+ public bool IsMultiPart { get; set; }
+
+ /// <summary>
+ /// Holds the paths to the game files in the event this is a multipart game
+ /// </summary>
+ public List<string> MultiPartGameFiles { get; set; }
+
+ /// <summary>
///
/// </summary>
protected override bool UseParentPathToCreateResolveArgs