mirror of
https://github.com/PredatH0r/ChanSort.git
synced 2026-01-15 20:02:04 +01:00
17 lines
450 B
C#
17 lines
450 B
C#
using ChanSort.Api;
|
|
|
|
namespace ChanSort.Loader.PhilipsBin
|
|
{
|
|
class Channel : ChannelInfo
|
|
{
|
|
public Channel(SignalSource source, long index, int oldProgNr, string name) : base(source, index, oldProgNr, name)
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// index of the record in the AntennaPresetTable / CablePresetTable file for the channel, matched by (onid + tsid + sid)
|
|
/// </summary>
|
|
public int PresetTableIndex { get; set; } = -1;
|
|
}
|
|
}
|