2
0
mirror of https://github.com/frappe/books.git synced 2024-09-20 11:29:00 +00:00
books/models/baseModels/TaxSummary/TaxSummary.ts
18alantom cd09d31b9b incr: remove redundant fields
- complete the feature
2022-10-03 11:48:14 +05:30

9 lines
163 B
TypeScript

import { Doc } from 'fyo/model/doc';
import { Money } from 'pesa';
export class TaxSummary extends Doc {
account?: string;
rate?: number;
amount?: Money;
}