1
0
mirror of https://github.com/bitwarden/server.git synced 2024-12-10 15:13:29 +01:00
bitwarden-server/src/Billing/BillingSettings.cs

10 lines
263 B
C#
Raw Normal View History

namespace Bit.Billing
{
public class BillingSettings
{
public virtual string StripeWebhookKey { get; set; }
public virtual string StripeWebhookSecret { get; set; }
2017-08-13 05:02:18 +02:00
public virtual string BraintreeWebhookKey { get; set; }
}
}