1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-10-09 05:57:40 +02:00
bitwarden-browser/libs/common/src/models/request/organizationTaxInfoUpdateRequest.ts

10 lines
227 B
TypeScript
Raw Normal View History

2021-12-16 13:36:21 +01:00
import { TaxInfoUpdateRequest } from "./taxInfoUpdateRequest";
2020-06-13 01:29:52 +02:00
export class OrganizationTaxInfoUpdateRequest extends TaxInfoUpdateRequest {
2021-12-16 13:36:21 +01:00
taxId: string;
line1: string;
line2: string;
city: string;
state: string;
2020-06-13 01:29:52 +02:00
}