GenericVideoResolver.cs 404 B

123456789101112131415161718
  1. #nullable disable
  2. #pragma warning disable CS1591
  3. using Emby.Naming.Common;
  4. using MediaBrowser.Controller.Entities;
  5. namespace Emby.Server.Implementations.Library.Resolvers
  6. {
  7. public class GenericVideoResolver<T> : BaseVideoResolver<T>
  8. where T : Video, new()
  9. {
  10. public GenericVideoResolver(NamingOptions namingOptions)
  11. : base(namingOptions)
  12. {
  13. }
  14. }
  15. }