mirror of
https://github.com/PredatH0r/ChanSort.git
synced 2026-01-12 10:22:04 +01:00
- 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
19 lines
469 B
C#
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);
|
|
}
|
|
}
|
|
}
|