1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-20 18:23:31 +00:00

[PM-14894] Remove old sales tax rates references (#12784)

This commit is contained in:
Jonas Hendrickx
2025-01-20 16:51:57 +01:00
committed by GitHub
parent d820bfb691
commit c6a3055184
3 changed files with 0 additions and 26 deletions

View File

@@ -1,18 +0,0 @@
import { BaseResponse } from "../../../models/response/base.response";
export class TaxRateResponse extends BaseResponse {
id: string;
country: string;
state: string;
postalCode: string;
rate: number;
constructor(response: any) {
super(response);
this.id = this.getResponseProperty("Id");
this.country = this.getResponseProperty("Country");
this.state = this.getResponseProperty("State");
this.postalCode = this.getResponseProperty("PostalCode");
this.rate = this.getResponseProperty("Rate");
}
}