mirror of
https://github.com/PredatH0r/ChanSort.git
synced 2026-01-16 04:12:03 +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
461 B
C#
17 lines
461 B
C#
using ChanSort.Api;
|
|
|
|
namespace ChanSort.Loader.SilvaSchneider
|
|
{
|
|
public class SerializerPlugin : ISerializerPlugin
|
|
{
|
|
public string DllName { get; set; }
|
|
public string PluginName { get { return "ITT/Medion/Nabo/ok./Peaq/Schaub-Lorenz/Silva-Schneider/Telefunken"; } }
|
|
public string FileFilter { get { return "*.sdx"; } }
|
|
|
|
public SerializerBase CreateSerializer(string inputFile)
|
|
{
|
|
return new Serializer(inputFile);
|
|
}
|
|
}
|
|
}
|