incomplete transactions should not be internal

This commit is contained in:
Florian Stinglmayr 2022-11-25 15:57:59 +01:00
parent 3a5d0a90ef
commit 1a6183ba9d

View File

@ -1,5 +1,6 @@
namespace EDPlayerJournal.BGS;
internal class IncompleteTransaction : Transaction {
public class IncompleteTransaction : Transaction {
public Transaction? UnderlyingTransaction { get; set; } = null;
public string Reason { get; set; } = "";