bringin poc

This commit is contained in:
Kukks
2024-01-25 15:25:19 +01:00
parent 37be856d82
commit 1efe97d4e1
8 changed files with 324 additions and 41 deletions

View File

@@ -0,0 +1,13 @@
using System;
namespace BTCPayServer.Plugins.Bringin;
public class BringinException : Exception
{
private readonly BringinClient.BringinErrorResponse _error;
public BringinException(BringinClient.BringinErrorResponse error)
{
_error = error;
}
}