1
0
mirror of https://github.com/bitwarden/server.git synced 2025-05-05 03:32:21 -05:00
bitwarden/src/Core/Billing/Models/PaymentMethod.cs
Alex Morask 97795de19e
[PM-11993] Fix free organization bug in SubscriberService.GetPaymentMethod (#4766)
* Handle free organization in SubscriberService.GetPaymentMethod

* Run dotnet format
2024-09-12 08:47:34 -04:00

11 lines
262 B
C#

namespace Bit.Core.Billing.Models;
public record PaymentMethod(
long AccountCredit,
PaymentSource PaymentSource,
string SubscriptionStatus,
TaxInformation TaxInformation)
{
public static PaymentMethod Empty => new(0, null, null, null);
}