barker/bookie/src/app/core/tax.ts
2019-06-15 23:09:43 +05:30

7 lines
89 B
TypeScript

export class Tax {
id: string;
name: string;
rate: number;
isFixture: boolean;
}