mirror of
https://github.com/PredatH0r/ChanSort.git
synced 2026-01-13 19:02:05 +01:00
- .sdx files supported by the "SilvaSchneider" loader are also used by ITT, Medion, Nabo, ok., PEAQ, Schaub Lorenz and, Telefunken - fixed Sony DVB-T channel lists - fixed using wrong loader, when a file type was selected in the OpenFileDialog
17 lines
362 B
C#
17 lines
362 B
C#
using ChanSort.Api;
|
|
|
|
namespace ChanSort.Loader.Sony
|
|
{
|
|
public class SerializerPlugin : ISerializerPlugin
|
|
{
|
|
public string DllName { get; set; }
|
|
public string PluginName => "Sony sdb.xml";
|
|
public string FileFilter => "*.xml";
|
|
|
|
public SerializerBase CreateSerializer(string inputFile)
|
|
{
|
|
return new Serializer(inputFile);
|
|
}
|
|
}
|
|
}
|