Files
stream-cinema/CinemaJellyfin/CinemaInnerLibraryManager.cs
Roman Vaníček 591a92f6aa
All checks were successful
continuous-integration/drone/push Build is passing
TV Series playback works
2024-12-02 00:13:40 +01:00

12 lines
231 B
C#

namespace Jellyfin.Plugin.Cinema;
class CinemaInnerLibraryManager
{
private readonly Type _innerType;
public CinemaInnerLibraryManager(Type innerType) {
this._innerType = innerType;
}
public Type InnerType => _innerType;
}