Files
ChanSort/source/ChanSort.Loader.Loewe/LoewePlugin.cs
Horst Beham 3038d40d24 - added ChangHong LED40D3000ISX dtv_cmdb_2.bin format (1489 KB size)
- added experimental support for Loewe servicelist.xml format
- added polarity information to Excel export (and changed column order slightly)
- added missing Romanian translation files to the .zip
2022-03-20 21:40:46 +01:00

19 lines
469 B
C#

using ChanSort.Api;
namespace ChanSort.Loader.Loewe
{
// The servicelist.db files are handled by the Hisense loader, which shares the same file format
public class LoewePlugin : ISerializerPlugin
{
public string DllName { get; set; }
public string PluginName => "Loewe (servicelist.xml)";
public string FileFilter => "*.xml";
public SerializerBase CreateSerializer(string inputFile)
{
return new Serializer(inputFile);
}
}
}