2013-02-21 01:33:05 +00:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Model.Entities
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// This is essentially a marker interface
|
|
|
|
|
/// </summary>
|
|
|
|
|
public interface IHasMediaStreams
|
|
|
|
|
{
|
2013-04-15 15:10:12 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the media streams.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The media streams.</value>
|
2013-02-21 01:33:05 +00:00
|
|
|
|
List<MediaStream> MediaStreams { get; set; }
|
2013-04-15 15:10:12 +00:00
|
|
|
|
/// <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; }
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|
|
|
|
|
}
|