mirror of
https://github.com/PredatH0r/ChanSort.git
synced 2026-03-06 20:20:43 +01:00
- rewrote m3u loader to handle arbitrary lines in the file and preserve encoding and line endings
- support for Hisense channel.db format of the H50B7700UW, which has a different schema in the fav_x tables - added spanish translation to distribution packages
This commit is contained in:
14
source/ChanSort.Loader.Hisense/Channel.cs
Normal file
14
source/ChanSort.Loader.Hisense/Channel.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using ChanSort.Api;
|
||||
|
||||
namespace ChanSort.Loader.Hisense
|
||||
{
|
||||
internal class Channel : ChannelInfo
|
||||
{
|
||||
public int ChannelId;
|
||||
public int NwMask;
|
||||
|
||||
public Channel(SignalSource ssource, long id, int prNr, string name): base(ssource, id, prNr, name)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user