jellyfin/MediaBrowser.Controller/Entities/IHasTrailers.cs

29 lines
797 B
C#
Raw Normal View History

2013-12-02 17:46:25 +01:00
using MediaBrowser.Model.Entities;
using System;
using System.Collections.Generic;
namespace MediaBrowser.Controller.Entities
{
2014-12-11 07:20:28 +01:00
public interface IHasTrailers : IHasProviderIds
2013-12-02 17:46:25 +01:00
{
/// <summary>
/// Gets or sets the remote trailers.
/// </summary>
/// <value>The remote trailers.</value>
List<MediaUrl> RemoteTrailers { get; set; }
/// <summary>
/// Gets or sets the local trailer ids.
/// </summary>
/// <value>The local trailer ids.</value>
List<Guid> LocalTrailerIds { get; set; }
2014-12-11 07:20:28 +01:00
List<Guid> RemoteTrailerIds { get; set; }
/// <summary>
/// Gets the trailer ids.
/// </summary>
/// <returns>List&lt;Guid&gt;.</returns>
List<Guid> GetTrailerIds();
2013-12-02 17:46:25 +01:00
}
}