2
0
mirror of https://github.com/frappe/books.git synced 2025-01-27 09:08:24 +00:00

8 lines
165 B
TypeScript
Raw Normal View History

2024-12-26 15:20:01 +05:30
import { Doc } from 'fyo/model/doc';
import { Account } from '../Account/Account';
export class PaymentMethod extends Doc {
name?: string;
account?: Account;
}