2
0
mirror of https://github.com/frappe/books.git synced 2024-11-15 01:44:04 +00:00
books/models/baseModels/CollectionRulesItems/CollectionRulesItems.ts
2024-09-04 09:08:30 +05:30

9 lines
197 B
TypeScript

import { Doc } from 'fyo/model/doc';
import { Money } from 'pesa';
export class CollectionRulesItems extends Doc {
tierName?: string;
collectionFactor?: number;
minimumTotalSpent?: Money;
}