mirror of
https://github.com/bitwarden/server
synced 2025-12-26 05:03:18 +00: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);
|
|
}
|