using System.Collections.Immutable;
using Observatory.Framework.Files.Journal;
using Observatory.Framework.Files.ParameterTypes;
namespace Observatory.Framework.Files;
///
/// Elite Dangerous navroute.json file. Contains data about currently plotted FSD jump route.
///
public class NavRouteFile : JournalBase
{
public override string Event => "Route";
///
/// List of star systems and their locations in the current route.
///
public List Route { get; init; }
}