mirror of
https://github.com/PredatH0r/ChanSort.git
synced 2026-01-16 12:22:03 +01:00
- fixed text input in "Favorites" column (for lists that only have favorite markers and not individual numbers) - converted source code to use SDK/MSBuild project files (for future migration to .NET 7 or 8)
17 lines
352 B
C#
17 lines
352 B
C#
using ChanSort.Api;
|
|
|
|
namespace ChanSort.Loader.TCL
|
|
{
|
|
public class TclPlugin : ISerializerPlugin
|
|
{
|
|
public string DllName { get; set; }
|
|
public string PluginName => "TCL";
|
|
public string FileFilter => "*.tar";
|
|
|
|
public SerializerBase CreateSerializer(string inputFile)
|
|
{
|
|
return new DtvDataSerializer(inputFile);
|
|
}
|
|
}
|
|
}
|