mirror of
https://github.com/bitwarden/server.git
synced 2025-04-07 14:08:13 -05:00
13 lines
351 B
C#
13 lines
351 B
C#
namespace Bit.Core.Billing.Models.Sales;
|
|
|
|
#nullable enable
|
|
|
|
public class CustomerSetup
|
|
{
|
|
public TokenizedPaymentSource? TokenizedPaymentSource { get; set; }
|
|
public TaxInformation? TaxInformation { get; set; }
|
|
public string? Coupon { get; set; }
|
|
|
|
public bool IsBillable => TokenizedPaymentSource != null && TaxInformation != null;
|
|
}
|