Files
ChanSort/source/ChanSort.Loader.M3u/Channel.cs
Horst Beham 3139f3d9f4 Various changes and refactorings to integrate the suggested changes from pull-request https://github.com/PredatH0r/ChanSort/pull/358 to handle the distinction between IP-antenna, IP-cable, IP-sat and DVB-T, DVB-C, DVB-S for Panasonic TVs.
- SignalSource.IP is now treated as a broadcast system (distinguishing Analog/Dvb/Ip) and no longer a broadcast medium (like antenna/cable/sat).
- SignalSource.Digital was renamed to DVB
2023-06-03 10:38:11 +02:00

18 lines
446 B
C#

using System.Collections.Generic;
using ChanSort.Api;
namespace ChanSort.Loader.M3u
{
internal class Channel : ChannelInfo
{
public List<string> Lines { get; }
public int ExtInfTrackNameIndex { get; set; }
public int ExtInfParamIndex { get; set; }
public Channel(int index, int progNr, string name, List<string> lines) : base(SignalSource.IpAll, index, progNr, name)
{
this.Lines = lines;
}
}
}