1
0
mirror of https://github.com/bitwarden/server synced 2026-01-02 00:23:40 +00:00
Files
server/src/Billing/BillingSettings.cs
2017-09-01 14:07:50 -04:00

10 lines
263 B
C#

namespace Bit.Billing
{
public class BillingSettings
{
public virtual string StripeWebhookKey { get; set; }
public virtual string StripeWebhookSecret { get; set; }
public virtual string BraintreeWebhookKey { get; set; }
}
}