mirror of
https://github.com/PredatH0r/ChanSort.git
synced 2026-01-12 10:22:04 +01:00
15 lines
285 B
C#
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)
|
|
{
|
|
}
|
|
}
|
|
}
|