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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
227 B
TypeScript
Raw Normal View History

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