You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
536 B
23 lines
536 B
using MediaBrowser.Controller.Entities;
|
|
using MediaBrowser.Controller.Resolvers;
|
|
|
|
namespace MediaBrowser.Server.Implementations.Library.Resolvers
|
|
{
|
|
/// <summary>
|
|
/// Resolves a Path into a Video
|
|
/// </summary>
|
|
public class VideoResolver : BaseVideoResolver<Video>
|
|
{
|
|
/// <summary>
|
|
/// Gets the priority.
|
|
/// </summary>
|
|
/// <value>The priority.</value>
|
|
public override ResolverPriority Priority
|
|
{
|
|
get { return ResolverPriority.Last; }
|
|
}
|
|
}
|
|
|
|
|
|
}
|