mirror of
https://github.com/PredatH0r/ChanSort.git
synced 2026-01-22 23:32:04 +01:00
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);
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|