You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
using System;
|
|
|
using System.Collections.Generic;
|
|
|
using System.Linq;
|
|
|
using System.Text;
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
namespace FlyoutTabSearch.Data
|
|
|
{
|
|
|
internal class SolarSystemData
|
|
|
{
|
|
|
public static AstronomicalBody Sun = new AstronomicalBody()
|
|
|
{
|
|
|
Name = "The Sun (Sol)",
|
|
|
Mass = "1.9855*10^30 kg",
|
|
|
Circumference = "4,379,000 km",
|
|
|
Age = "4.57 billion years",
|
|
|
EmojiIcon = "☀️",
|
|
|
};
|
|
|
|
|
|
public static AstronomicalBody Earth = new AstronomicalBody()
|
|
|
{
|
|
|
Name = "Earth",
|
|
|
Mass = "5.97237*10^24 kg",
|
|
|
Circumference = "40,075 km",
|
|
|
Age = "4.54 billion years",
|
|
|
EmojiIcon = "🌎",
|
|
|
};
|
|
|
|
|
|
public static AstronomicalBody Moon = new AstronomicalBody()
|
|
|
{
|
|
|
Name = "Moon",
|
|
|
Mass = "7.342*10^22 kg",
|
|
|
Circumference = "10,921 km",
|
|
|
Age = "4.53 billion years",
|
|
|
EmojiIcon = "🌕",
|
|
|
};
|
|
|
|
|
|
public static AstronomicalBody HalleysComet = new AstronomicalBody()
|
|
|
{
|
|
|
Name = "Halley's Comet",
|
|
|
Mass = "22 * 10^14 kg",
|
|
|
Circumference = "11 km",
|
|
|
Age = "4.6 billion years",
|
|
|
EmojiIcon = "☄",
|
|
|
};
|
|
|
}
|
|
|
}
|
|
|
|