2013-03-31 14:09:38 +02:00
|
|
|
|
namespace ChanSort.Api
|
|
|
|
|
|
{
|
|
|
|
|
|
public class Transponder
|
|
|
|
|
|
{
|
|
|
|
|
|
private readonly int id;
|
|
|
|
|
|
|
|
|
|
|
|
public int Id { get { return id; } }
|
|
|
|
|
|
public Satellite Satellite { get; set; }
|
|
|
|
|
|
public decimal FrequencyInMhz { get; set; }
|
|
|
|
|
|
public int Number { get; set; }
|
2013-04-29 00:35:40 +02:00
|
|
|
|
public virtual int SymbolRate { get; set; }
|
2013-03-31 14:09:38 +02:00
|
|
|
|
public char Polarity { get; set; }
|
|
|
|
|
|
public int OriginalNetworkId { get; set; }
|
|
|
|
|
|
public int TransportStreamId { get; set; }
|
2022-03-20 21:40:46 +01:00
|
|
|
|
public SignalSource SignalSource { get; set; }
|
2013-03-31 14:09:38 +02:00
|
|
|
|
|
|
|
|
|
|
public Transponder(int id)
|
|
|
|
|
|
{
|
|
|
|
|
|
this.id = id;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|