Files
stream-cinema/StreamCinemaJellyfin/StreamCinemaInnerMediaSourceManager.cs
Roman Vaníček 4b92508b10
Some checks failed
continuous-integration/drone/push Build is failing
Movie media sources in progress
2024-11-27 21:03:09 +01:00

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;
}