mirror of
https://github.com/bitwarden/server.git
synced 2025-07-02 16:42:50 -05:00
billing fixes and added gateway to subscriber
This commit is contained in:
8
src/Core/Enums/GatewayType.cs
Normal file
8
src/Core/Enums/GatewayType.cs
Normal file
@ -0,0 +1,8 @@
|
||||
namespace Bit.Core.Enums
|
||||
{
|
||||
public enum GatewayType : byte
|
||||
{
|
||||
Stripe = 0,
|
||||
Braintree = 1
|
||||
}
|
||||
}
|
@ -2,9 +2,9 @@
|
||||
{
|
||||
public enum PaymentMethodType : byte
|
||||
{
|
||||
Card,
|
||||
BankAccount,
|
||||
PayPal,
|
||||
Bitcoin
|
||||
Card = 0,
|
||||
BankAccount = 1,
|
||||
PayPal = 2,
|
||||
Bitcoin = 3
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user