mirror of
https://github.com/bitwarden/server
synced 2026-01-03 09:03:44 +00:00
* fix: update calculation to be decimal * fix: update record type property to decimal * tests: add tests to service and update test names
16 lines
394 B
C#
16 lines
394 B
C#
// FIXME: Update this file to be null safe and then delete the line below
|
|
#nullable disable
|
|
|
|
using Bit.Core.Billing.Tax.Models;
|
|
|
|
namespace Bit.Core.Billing.Models;
|
|
|
|
public record PaymentMethod(
|
|
decimal AccountCredit,
|
|
PaymentSource PaymentSource,
|
|
string SubscriptionStatus,
|
|
TaxInformation TaxInformation)
|
|
{
|
|
public static PaymentMethod Empty => new(0, null, null, null);
|
|
}
|