using System.Collections.Generic; namespace MediaBrowser.Model.Entities { /// /// This is essentially a marker interface /// public interface IHasMediaStreams { /// /// Gets or sets the media streams. /// /// The media streams. List MediaStreams { get; set; } /// /// Gets or sets the path. /// /// The path. string Path { get; set; } /// /// Gets or sets the primary image path. /// /// The primary image path. string PrimaryImagePath { get; set; } } }