- 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:
hbeham
2015-06-04 13:31:43 +02:00
parent 664235b1ed
commit d4318b13a5
397 changed files with 602 additions and 0 deletions

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