using ChanSort.Api; namespace ChanSort.Loader.Enigma2 { internal class Channel : ChannelInfo { /// /// first two fields of the lamedb entry /// public string Prefix { get; set; } = "1:0"; /// /// For DVB-S it is the orbital position * 10 (e.g. 192 for Astra 19.2E) * 65536 /// public int DvbNamespace { get; set; } public int ServiceNumber { get; set; } /// /// all fields after the DVB-namespace in the lamedb entry /// public string Suffix { get; set; } = ":0:0:0:"; /// /// #DESCRIPTION of the userbouquet entry /// public string Description { get; set; } } }