using System.Collections.Generic; namespace MediaBrowser.Model.Entities { /// /// This is essentially a marker interface /// public interface IHasMediaStreams { List MediaStreams { get; set; } } }