mirror of
https://github.com/PredatH0r/ChanSort.git
synced 2026-01-15 11:52:04 +01:00
- auto-detect byte-order for Panasonic "svl.bin" channel list - saving SamToolBox *.chl channel list - no longer auto-saving *.csv channel list - disabled, incomplete: creating channels from reference list
19 lines
429 B
C#
19 lines
429 B
C#
using ChanSort.Api;
|
|
|
|
namespace ChanSort.Loader.LG
|
|
{
|
|
internal class LnbConfig : Api.LnbConfig
|
|
{
|
|
public Satellite Satellite { get; private set; }
|
|
|
|
public LnbConfig(DataMapping mapping, DataRoot dataRoot)
|
|
{
|
|
this.Id = mapping.GetByte("SettingId");
|
|
if (this.Id == 0)
|
|
return;
|
|
int satIndex = mapping.GetByte("SatIndex");
|
|
this.Satellite = dataRoot.Satellites[satIndex];
|
|
}
|
|
}
|
|
}
|