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