namespace EDJournal { public class Events { /** * A mission has been completed. */ public static readonly string MissionCompleted = "MissionCompleted"; public static readonly string MissionAccepted = "MissionAccepted"; public static readonly string Docked = "Docked"; public static readonly string FSDJump = "FSDJump"; public static readonly string MultiSellExplorationData = "MultiSellExplorationData"; public static readonly string MarketSell = "MarketSell"; public static readonly string SellMicroResources = "SellMicroResources"; public static readonly string RedeemVoucher = "RedeemVoucher"; public static readonly string Bounty = "Bounty"; public static readonly string ShipTargeted = "ShipTargeted"; public static readonly string ShieldState = "ShieldState"; public static readonly string MissionRedirected = "MissionRedirected"; public static readonly string UnderAttack = "UnderAttack"; public static readonly string HullDamage = "HullDamage"; public static readonly string FighterDestroyed = "FighterDestroyed"; } }