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 { /// /// List of star systems and their locations in the current route. /// public ImmutableList Route { get; init; } }