aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Library/Resolvers/GenericVideoResolver.cs
blob: 9599faea4b913dccd2d1b39b28c6efe54920281b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#nullable disable

#pragma warning disable CS1591

using MediaBrowser.Controller.Entities;
using MediaBrowser.Controller.Library;

namespace Emby.Server.Implementations.Library.Resolvers
{
    public class GenericVideoResolver<T> : BaseVideoResolver<T>
        where T : Video, new()
    {
        public GenericVideoResolver(ILibraryManager libraryManager)
            : base(libraryManager)
        {
        }
    }
}