mirror of
https://github.com/PredatH0r/ChanSort.git
synced 2026-05-09 04:36:57 +02:00
- merged projects so that there is one loader for each manufacturer
This commit is contained in:
16
source/ChanSort.Loader.Sony/SonyPlugin.cs
Normal file
16
source/ChanSort.Loader.Sony/SonyPlugin.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using ChanSort.Api;
|
||||
|
||||
namespace ChanSort.Loader.Sony
|
||||
{
|
||||
public class SonyPlugin : 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);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user