mirror of
https://github.com/PredatH0r/ChanSort.git
synced 2026-02-04 13:39:02 +01:00
- added support for *.csv channel lists from various manufacturers (Sharp, Dyon, Blaupunkt, Hisense, ...)
- updated readme with system requirement (including Linux) and TV models
This commit is contained in:
16
source/ChanSort.Loader.Sharp/SharpPlugin.cs
Normal file
16
source/ChanSort.Loader.Sharp/SharpPlugin.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using ChanSort.Api;
|
||||
|
||||
namespace ChanSort.Loader.Sharp
|
||||
{
|
||||
public class SharpPlugin : ISerializerPlugin
|
||||
{
|
||||
public string DllName { get; set; }
|
||||
public string PluginName => "Sharp";
|
||||
public string FileFilter => "*DVBS*.csv";
|
||||
|
||||
public SerializerBase CreateSerializer(string inputFile)
|
||||
{
|
||||
return new SharpSerializer(inputFile);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user