1
0
mirror of https://github.com/bitwarden/server synced 2025-12-21 10:43:44 +00:00

bitpay invoice api

This commit is contained in:
Kyle Spearrin
2019-02-21 22:43:37 -05:00
parent d514fcdaeb
commit fdaa9504d5
11 changed files with 144 additions and 0 deletions

View File

@@ -31,6 +31,7 @@ namespace Bit.Core
public virtual YubicoSettings Yubico { get; set; } = new YubicoSettings();
public virtual DuoSettings Duo { get; set; } = new DuoSettings();
public virtual BraintreeSettings Braintree { get; set; } = new BraintreeSettings();
public virtual BitPaySettings BitPay { get; set; } = new BitPaySettings();
public class BaseServiceUriSettings
{
@@ -186,6 +187,12 @@ namespace Bit.Core
public string PrivateKey { get; set; }
}
public class BitPaySettings
{
public bool Production { get; set; }
public string Base58Secret { get; set; }
}
public class InstallationSettings
{
public Guid Id { get; set; }