- merged projects so that there is one loader for each manufacturer

This commit is contained in:
Horst Beham
2021-01-23 14:22:18 +01:00
parent 4abe7a0b35
commit 086d4683fd
288 changed files with 466 additions and 10654 deletions

View 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);
}
}
}