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