mirror of
https://github.com/PredatH0r/ChanSort.git
synced 2026-01-14 03:12:04 +01:00
Selecting any .xml or .bin file in the folder will now load all DVB\*.xml files from the channellib and s2channellib sub folders. The Loader can now return multiple file names to the MainForm that it will use for backup/restore.
17 lines
374 B
C#
17 lines
374 B
C#
using ChanSort.Api;
|
|
|
|
namespace ChanSort.Loader.PhilipsXml
|
|
{
|
|
public class SerializerPlugin : ISerializerPlugin
|
|
{
|
|
public string DllName { get; set; }
|
|
public string PluginName => "Philips .xml";
|
|
public string FileFilter => "*.xml;*.bin";
|
|
|
|
public SerializerBase CreateSerializer(string inputFile)
|
|
{
|
|
return new Serializer(inputFile);
|
|
}
|
|
}
|
|
}
|