You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.0 KiB
39 lines
1.0 KiB
using MediaBrowser.Model.Entities;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
|
|
namespace MediaBrowser.Controller.Entities
|
|
{
|
|
public interface IHasTrailers : IHasProviderIds
|
|
{
|
|
/// <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; }
|
|
List<Guid> RemoteTrailerIds { get; set; }
|
|
}
|
|
|
|
public static class HasTrailerExtensions
|
|
{
|
|
/// <summary>
|
|
/// Gets the trailer ids.
|
|
/// </summary>
|
|
/// <returns>List<Guid>.</returns>
|
|
public static List<Guid> GetTrailerIds(this IHasTrailers item)
|
|
{
|
|
var list = item.LocalTrailerIds.ToList();
|
|
list.AddRange(item.RemoteTrailerIds);
|
|
return list;
|
|
}
|
|
|
|
}
|
|
}
|