mirror of
https://github.com/PredatH0r/ChanSort.git
synced 2026-05-07 22:07:13 +02:00
- merged projects so that there is one loader for each manufacturer
This commit is contained in:
16
source/ChanSort.Loader.VDR/VdrPlugin.cs
Normal file
16
source/ChanSort.Loader.VDR/VdrPlugin.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using ChanSort.Api;
|
||||
|
||||
namespace ChanSort.Loader.VDR
|
||||
{
|
||||
public class VdrPlugin : ISerializerPlugin
|
||||
{
|
||||
public string DllName { get; set; }
|
||||
public string PluginName => "Linux VDR (*.conf)";
|
||||
public string FileFilter => "*.conf";
|
||||
|
||||
public SerializerBase CreateSerializer(string inputFile)
|
||||
{
|
||||
return new Serializer(inputFile);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user