10 lines
120 B
C#
10 lines
120 B
C#
namespace BTCPayApp.Core.Attempt2;
|
|
|
|
public enum SetupState
|
|
{
|
|
Undetermined,
|
|
Pending,
|
|
Completed,
|
|
Failed
|
|
}
|