12 lines
296 B
C#
12 lines
296 B
C#
namespace Jellyfin.Plugin.StreamCinema;
|
|
|
|
class StreamCinemaInnerMediaSourceManager : IStreamCinemaInnerMediaSourceManager
|
|
{
|
|
private readonly Type _innerType;
|
|
|
|
public StreamCinemaInnerMediaSourceManager(Type innerType) {
|
|
this._innerType = innerType;
|
|
}
|
|
|
|
public Type InnerType => _innerType;
|
|
} |