aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Entities
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2013-04-15 11:10:12 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2013-04-15 11:10:12 -0400
commit30d6e2cd6ce0702faaec73b7ffb59d9844fb6967 (patch)
tree27407208aa35a859659ab77451e0296c3f6ca725 /MediaBrowser.Model/Entities
parenta4cac9c95df1f169fd3457d25466f6896e12cd3f (diff)
made library scan a bit more conservative
Diffstat (limited to 'MediaBrowser.Model/Entities')
-rw-r--r--MediaBrowser.Model/Entities/IHasMediaStreams.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Entities/IHasMediaStreams.cs b/MediaBrowser.Model/Entities/IHasMediaStreams.cs
index a0312aa7b..8c4ea288a 100644
--- a/MediaBrowser.Model/Entities/IHasMediaStreams.cs
+++ b/MediaBrowser.Model/Entities/IHasMediaStreams.cs
@@ -7,6 +7,20 @@ namespace MediaBrowser.Model.Entities
/// </summary>
public interface IHasMediaStreams
{
+ /// <summary>
+ /// Gets or sets the media streams.
+ /// </summary>
+ /// <value>The media streams.</value>
List<MediaStream> MediaStreams { get; set; }
+ /// <summary>
+ /// Gets or sets the path.
+ /// </summary>
+ /// <value>The path.</value>
+ string Path { get; set; }
+ /// <summary>
+ /// Gets or sets the primary image path.
+ /// </summary>
+ /// <value>The primary image path.</value>
+ string PrimaryImagePath { get; set; }
}
}