mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-07-16 11:13:32 +01:00
Add GPL modules
This commit is contained in:
19
MediaBrowser.Controller/Entities/IHasMediaSources.cs
Normal file
19
MediaBrowser.Controller/Entities/IHasMediaSources.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using MediaBrowser.Model.Dto;
|
||||
using System.Collections.Generic;
|
||||
using MediaBrowser.Model.Entities;
|
||||
using System;
|
||||
|
||||
namespace MediaBrowser.Controller.Entities
|
||||
{
|
||||
public interface IHasMediaSources
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets the media sources.
|
||||
/// </summary>
|
||||
List<MediaSourceInfo> GetMediaSources(bool enablePathSubstitution);
|
||||
List<MediaStream> GetMediaStreams();
|
||||
Guid Id { get; set; }
|
||||
long? RunTimeTicks { get; set; }
|
||||
string Path { get; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user