1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 16:53:34 +00:00

Add tax information to provider setup component when FF is on. (#8616)

This commit is contained in:
Alex Morask
2024-04-10 14:10:47 -04:00
committed by GitHub
parent 4a3cd24510
commit 4c2afb4121
10 changed files with 80 additions and 26 deletions

View File

@@ -0,0 +1,9 @@
import { TaxInfoUpdateRequest } from "./tax-info-update.request";
export class ExpandedTaxInfoUpdateRequest extends TaxInfoUpdateRequest {
taxId: string;
line1: string;
line2: string;
city: string;
state: string;
}