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

9 lines
199 B
C#
Raw Normal View History

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