mirror of
https://github.com/PredatH0r/ChanSort.git
synced 2026-01-15 11:52:04 +01:00
- m3u: #EXTINF tag data is displayed in "Short Name" column and can be edited - m3u: fixed saving #EXTINF lines containing tag data - m3u: readded "File / Save as" menu item (but not for other types of lists)
18 lines
443 B
C#
18 lines
443 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.IP, index, progNr, name)
|
|
{
|
|
this.Lines = lines;
|
|
}
|
|
}
|
|
}
|