Files
ChanSort/source/ChanSort.Loader.Hisense/Channel.cs
Horst Beham f04cb5e903 - 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
2020-01-02 20:33:40 +01:00

15 lines
275 B
C#

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)
{
}
}
}