mirror of
https://github.com/PredatH0r/ChanSort.git
synced 2026-02-07 23:19:03 +01:00
- moved all files to a "source" subdirectory to tidy up the GitHub project page
- started to write a readme.md
This commit is contained in:
15
source/ChanSort.Loader.VDR/SerializerPlugin.cs
Normal file
15
source/ChanSort.Loader.VDR/SerializerPlugin.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
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);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user