mirror of
https://github.com/bitwarden/server.git
synced 2025-05-05 03:32:21 -05:00
11 lines
262 B
C#
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);
|
|
}
|