mirror of
https://github.com/PredatH0r/ChanSort.git
synced 2026-01-12 10:22:04 +01:00
17 lines
361 B
C#
17 lines
361 B
C#
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);
|
|
}
|
|
}
|
|
}
|