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