All checks were successful
continuous-integration/drone/push Build is passing
12 lines
231 B
C#
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;
|
|
} |