using System.Collections.Generic;
List<string> getOrbitals();
void addOrbitals(string Orbital);
enum CelestialBodyType { Star, Planet, Satellite }
class Star : CelestialBody
private List<string> Planets;
private readonly string Type = "Star";
public string getType() { return Type; }
public string getName() { return _Name; }
public List<string> getOrbitals() { return Planets; }
public void addOrbitals(string NewPlanet) { Planets.Add(NewPlanet); }
public Star() : this("No Name")
public Star(string Name) : this(Name, CelestialBodyType.Star)
public Star(string Name, CelestialBodyType Star)
public static void Main()
Star star = new Star("The Sun");
Console.Write(star.getName() + star.getType());