Files
stream-cinema/CinemaJellyfin/CinemaInnerMediaSourceManager.cs
Roman Vaníček 0bcb6d571f
All checks were successful
continuous-integration/drone/push Build is passing
Rename to Cinema
2024-11-30 00:50:10 +01:00

12 lines
272 B
C#

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