mirror of
https://github.com/PredatH0r/ChanSort.git
synced 2026-01-15 11:52:04 +01:00
- added unit tests for loading and saving TLLs of various LG models - added "Save reference list" menu item
16 lines
366 B
C#
16 lines
366 B
C#
using ChanSort.Api;
|
|
|
|
namespace ChanSort.Loader.Toshiba
|
|
{
|
|
public class DbSerializerPlugin : ISerializerPlugin
|
|
{
|
|
public string PluginName { get { return "Toshiba *.zip"; } }
|
|
public string FileFilter { get { return "*.zip"; } }
|
|
|
|
public SerializerBase CreateSerializer(string inputFile)
|
|
{
|
|
return new DbSerializer(inputFile);
|
|
}
|
|
}
|
|
}
|