mirror of
https://github.com/PredatH0r/ChanSort.git
synced 2026-01-14 11:22:03 +01:00
16 lines
384 B
C#
16 lines
384 B
C#
using ChanSort.Api;
|
|
|
|
namespace ChanSort.Loader.SamsungJ
|
|
{
|
|
public class DbSerializerPlugin : ISerializerPlugin
|
|
{
|
|
public string PluginName { get { return "Samsung J-Series"; } }
|
|
public string FileFilter { get { return "channel_list_t*.zip"; } }
|
|
|
|
public SerializerBase CreateSerializer(string inputFile)
|
|
{
|
|
return new DbSerializer(inputFile);
|
|
}
|
|
}
|
|
}
|