mirror of
https://github.com/bitwarden/browser
synced 2026-02-13 15:03:26 +00:00
29 lines
652 B
TypeScript
29 lines
652 B
TypeScript
// @ts-strict-ignore
|
|
export class PreviewIndividualInvoiceRequest {
|
|
passwordManager: PasswordManager;
|
|
taxInformation: TaxInformation;
|
|
|
|
constructor(passwordManager: PasswordManager, taxInformation: TaxInformation) {
|
|
this.passwordManager = passwordManager;
|
|
this.taxInformation = taxInformation;
|
|
}
|
|
}
|
|
|
|
class PasswordManager {
|
|
additionalStorage: number;
|
|
|
|
constructor(additionalStorage: number) {
|
|
this.additionalStorage = additionalStorage;
|
|
}
|
|
}
|
|
|
|
class TaxInformation {
|
|
postalCode: string;
|
|
country: string;
|
|
|
|
constructor(postalCode: string, country: string) {
|
|
this.postalCode = postalCode;
|
|
this.country = country;
|
|
}
|
|
}
|