Files
ChanSort/source/ChanSort.Loader.Hisense/ChannelDb/Channel.cs

15 lines
285 B
C#

using ChanSort.Api;
namespace ChanSort.Loader.Hisense.ChannelDb
{
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)
{
}
}
}