aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Entities/BasePluginFolder.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2013-05-01 22:44:52 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2013-05-01 22:44:52 -0400
commitb11d06f36f31317f072e6cd1a27bd7d06b5f0c17 (patch)
treea8144b47e8a7eb11e0e0b74b386f1e7912f420b1 /MediaBrowser.Controller/Entities/BasePluginFolder.cs
parente9cfa6cd267786f8fd97ef2aeb88941c98c8aacf (diff)
more work on streaming remotely
Diffstat (limited to 'MediaBrowser.Controller/Entities/BasePluginFolder.cs')
-rw-r--r--MediaBrowser.Controller/Entities/BasePluginFolder.cs13
1 files changed, 13 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Entities/BasePluginFolder.cs b/MediaBrowser.Controller/Entities/BasePluginFolder.cs
index ca6cfd246..bf8040a9f 100644
--- a/MediaBrowser.Controller/Entities/BasePluginFolder.cs
+++ b/MediaBrowser.Controller/Entities/BasePluginFolder.cs
@@ -29,8 +29,21 @@ namespace MediaBrowser.Controller.Entities
{
base.Id = value;
}
+ }
+
+ /// <summary>
+ /// Gets or sets the type of the location.
+ /// </summary>
+ /// <value>The type of the location.</value>
+ public override LocationType LocationType
+ {
+ get
+ {
+ return LocationType.Virtual;
+ }
}
+
/// <summary>
/// We don't resolve normally so need to fill this in
/// </summary>