mirror of
https://github.com/PredatH0r/ChanSort.git
synced 2026-01-13 10:52:05 +01:00
16 lines
365 B
C#
16 lines
365 B
C#
using ChanSort.Api;
|
|
|
|
namespace ChanSort.Loader.VDR
|
|
{
|
|
public class SerializerPlugin : ISerializerPlugin
|
|
{
|
|
public string PluginName { get { return "VDR Channels *.conf"; } }
|
|
public string FileFilter { get { return "*.conf"; } }
|
|
|
|
public SerializerBase CreateSerializer(string inputFile)
|
|
{
|
|
return new Serializer(inputFile);
|
|
}
|
|
}
|
|
}
|