diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-04-15 11:10:12 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-04-15 11:10:12 -0400 |
| commit | 30d6e2cd6ce0702faaec73b7ffb59d9844fb6967 (patch) | |
| tree | 27407208aa35a859659ab77451e0296c3f6ca725 /MediaBrowser.Model/Entities | |
| parent | a4cac9c95df1f169fd3457d25466f6896e12cd3f (diff) | |
made library scan a bit more conservative
Diffstat (limited to 'MediaBrowser.Model/Entities')
| -rw-r--r-- | MediaBrowser.Model/Entities/IHasMediaStreams.cs | 14 |
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; } } } |
