mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-04 03:27:21 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			40 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
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>
 | 
						|
        MediaUrl[] RemoteTrailers { get; set; }
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Gets or sets the local trailer ids.
 | 
						|
        /// </summary>
 | 
						|
        /// <value>The local trailer ids.</value>
 | 
						|
        Guid[] LocalTrailerIds { get; set; }
 | 
						|
        Guid[] RemoteTrailerIds { get; set; }
 | 
						|
        Guid Id { 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;
 | 
						|
        }
 | 
						|
 | 
						|
    }
 | 
						|
}
 |