23 lines
796 B
C#
23 lines
796 B
C#
/*--------------------------------------------------------------
|
|
* HTBLA-Leonding / Class: 4CHIF
|
|
*--------------------------------------------------------------
|
|
* Hinterdorfer Jonas
|
|
*--------------------------------------------------------------
|
|
* Description: SpaceShuttle
|
|
*--------------------------------------------------------------
|
|
*/
|
|
|
|
namespace SpaceShuttle;
|
|
|
|
using System;
|
|
|
|
public class SpaceShuttleStart
|
|
{
|
|
public int No { get; set; }
|
|
public DateTime LaunchDate { get; set; }
|
|
public string Mission { get; set; } = string.Empty;
|
|
public string Shuttle { get; set; } = string.Empty;
|
|
public string LaunchPad { get; set; } = string.Empty;
|
|
public string LandingSite { get; set; } = string.Empty;
|
|
public string Notes { get; set; } = string.Empty;
|
|
} |