From 1a6183ba9dbd5ee0422adf709b99ac9de3c9419c Mon Sep 17 00:00:00 2001 From: Florian Stinglmayr Date: Fri, 25 Nov 2022 15:57:59 +0100 Subject: [PATCH] incomplete transactions should not be internal --- EDPlayerJournal/BGS/IncompleteTransaction.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/EDPlayerJournal/BGS/IncompleteTransaction.cs b/EDPlayerJournal/BGS/IncompleteTransaction.cs index 340920e..db67964 100644 --- a/EDPlayerJournal/BGS/IncompleteTransaction.cs +++ b/EDPlayerJournal/BGS/IncompleteTransaction.cs @@ -1,5 +1,6 @@ -namespace EDPlayerJournal.BGS; -internal class IncompleteTransaction : Transaction { +namespace EDPlayerJournal.BGS; + +public class IncompleteTransaction : Transaction { public Transaction? UnderlyingTransaction { get; set; } = null; public string Reason { get; set; } = "";