namespace EDPlayerJournal.Entries;
public class SupercruiseDestinationDropEntry : Entry {
    /// 
    /// Destination type, internal string.
    /// 
    public string? Type { get; set; } = null;
    /// 
    /// Destination type, localised string.
    /// 
    public string? TypeLocalised { get; set; } = null;
    /// 
    /// Threat of the destination, if known.
    /// 
    public long? Threat { get; set; } = null;
    /// 
    /// Market ID if it has one.
    /// 
    public ulong? MarketID { get; set; } = null;
    protected override void Initialise() {
        Type = JSON.Value("Type");
        TypeLocalised = JSON.Value("Type_Localised");
        Threat = JSON.Value("Threat");
        MarketID = JSON.Value("MarketID");
    }
}