using MediaBrowser.Model.Entities;
using System;
using System.Collections.Generic;
namespace MediaBrowser.Controller.Entities
{
public interface IHasTrailers : IHasProviderIds
{
///
/// 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; }
List RemoteTrailerIds { get; set; }
///
/// Gets the trailer ids.
///
/// List<Guid>.
List GetTrailerIds();
}
}