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

10 lines
237 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;
}