mirror of
https://github.com/bitwarden/server.git
synced 2024-12-02 13:53:23 +01:00
11 lines
315 B
C#
11 lines
315 B
C#
namespace Bit.Billing
|
|
{
|
|
public class BillingSettings
|
|
{
|
|
public virtual string JobsKey { get; set; }
|
|
public virtual string StripeWebhookKey { get; set; }
|
|
public virtual string StripeWebhookSecret { get; set; }
|
|
public virtual string BraintreeWebhookKey { get; set; }
|
|
}
|
|
}
|