mirror of
https://github.com/PredatH0r/ChanSort.git
synced 2026-01-12 10:22:04 +01:00
29 lines
629 B
C#
29 lines
629 B
C#
using System.Collections.Generic;
|
|
|
|
namespace ChanSort.Api
|
|
{
|
|
public class Satellite
|
|
{
|
|
private readonly int id;
|
|
private readonly IDictionary<int, Transponder> transponder = new Dictionary<int, Transponder>();
|
|
|
|
public int Id { get { return this.id; } }
|
|
public string Name { get; set; }
|
|
public string OrbitalPosition { get; set; }
|
|
public IDictionary<int, Transponder> Transponder { get { return this.transponder; } }
|
|
|
|
public Satellite(int id)
|
|
{
|
|
this.id = id;
|
|
}
|
|
|
|
public LnbConfig LnbConfig { get; set; }
|
|
|
|
public override string ToString()
|
|
{
|
|
return Name;
|
|
}
|
|
|
|
}
|
|
}
|