mirror of
https://github.com/bitwarden/server.git
synced 2025-04-22 13:35:10 -05:00
8 lines
183 B
C#
8 lines
183 B
C#
namespace Bit.Core.Billing.Models;
|
|
|
|
public record PreviewInvoiceInfo(
|
|
decimal EffectiveTaxRate,
|
|
decimal TaxableBaseAmount,
|
|
decimal TaxAmount,
|
|
decimal TotalAmount);
|