using MediaBrowser.Model.Entities; using System; using System.Collections.Generic; namespace MediaBrowser.Controller.Entities { public interface IHasTrailers { /// /// Gets or sets the remote trailers. /// /// The remote trailers. List RemoteTrailers { get; set; } /// /// Gets or sets the local trailer ids. /// /// The local trailer ids. List LocalTrailerIds { get; set; } } }