mirror of
https://github.com/bitwarden/server
synced 2025-12-20 10:13:39 +00:00
paymentservice with stripe & braintree implem.
This commit is contained in:
@@ -16,6 +16,7 @@
|
||||
public virtual YubicoSettings Yubico { get; set; } = new YubicoSettings();
|
||||
public virtual DuoSettings Duo { get; set; } = new DuoSettings();
|
||||
public virtual U2fSettings U2f { get; set; } = new U2fSettings();
|
||||
public virtual BraintreeSettings Braintree { get; set; } = new BraintreeSettings();
|
||||
|
||||
public class SqlServerSettings
|
||||
{
|
||||
@@ -86,5 +87,13 @@
|
||||
{
|
||||
public string AppId { get; set; }
|
||||
}
|
||||
|
||||
public class BraintreeSettings
|
||||
{
|
||||
public bool Production { get; set; }
|
||||
public string MerchantId { get; set; }
|
||||
public string PublicKey { get; set; }
|
||||
public string PrivateKey { get; set; }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user