mirror of
https://github.com/bitwarden/browser
synced 2025-12-16 08:13:42 +00:00
10 lines
237 B
TypeScript
10 lines
237 B
TypeScript
import { TaxInfoUpdateRequest } from './taxInfoUpdateRequest';
|
|
|
|
export class OrganizationTaxInfoUpdateRequest extends TaxInfoUpdateRequest {
|
|
taxId: string;
|
|
line1: string;
|
|
line2: string;
|
|
city: string;
|
|
state: string;
|
|
}
|