Files
Horst Beham a901a7fa65 - hopefully fixed corrupted Sony lists when channels were deleted
- upgrade to DX 19.2.6
- detect file corruption when all bytes have same value instead of just 0x00 (as there are broken files with 0xFF too)
2020-02-02 23:31:44 +01:00

19 lines
505 B
C#

using System.Collections.Generic;
using ChanSort.Api;
namespace ChanSort.Loader.Sony
{
internal class Channel : ChannelInfo
{
public readonly Dictionary<string,string> ServiceData = new Dictionary<string, string>();
public readonly Dictionary<string,string> ProgrammeData = new Dictionary<string, string>();
internal Channel(SignalSource source, int order, int recId)
{
this.SignalSource = source;
this.RecordOrder = order;
this.RecordIndex = recId;
}
}
}