mirror of
https://github.com/PredatH0r/ChanSort.git
synced 2026-01-14 11:22:03 +01:00
currently supports: - read and write of satellite channels (incl. sorted favorites and "locked" flag) - read-only of digital cable/antenna files (still missing transponder information)
17 lines
381 B
C#
17 lines
381 B
C#
using ChanSort.Api;
|
|
|
|
namespace ChanSort.Loader.PhilipsBin
|
|
{
|
|
public class SerializerPlugin : ISerializerPlugin
|
|
{
|
|
public string DllName { get; set; }
|
|
public string PluginName => "Philips .bin/.dat";
|
|
public string FileFilter => "*.bin;*.dat;*";
|
|
|
|
public SerializerBase CreateSerializer(string inputFile)
|
|
{
|
|
return new Serializer(inputFile);
|
|
}
|
|
}
|
|
}
|