mirror of
https://github.com/bitwarden/server.git
synced 2025-07-02 08:32:50 -05:00
[PM-8445] Allow for organization sales with no payment method for trials (#4800)
* Allow for OrganizationSales with no payment method * Run dotnet format
This commit is contained in:
@ -4,7 +4,9 @@
|
||||
|
||||
public class CustomerSetup
|
||||
{
|
||||
public required TokenizedPaymentSource TokenizedPaymentSource { get; set; }
|
||||
public required TaxInformation TaxInformation { get; set; }
|
||||
public TokenizedPaymentSource? TokenizedPaymentSource { get; set; }
|
||||
public TaxInformation? TaxInformation { get; set; }
|
||||
public string? Coupon { get; set; }
|
||||
|
||||
public bool IsBillable => TokenizedPaymentSource != null && TaxInformation != null;
|
||||
}
|
||||
|
Reference in New Issue
Block a user