mirror of
https://github.com/frappe/books.git
synced 2025-01-10 18:24:40 +00:00
8 lines
165 B
TypeScript
8 lines
165 B
TypeScript
|
import { Doc } from 'fyo/model/doc';
|
||
|
import { Account } from '../Account/Account';
|
||
|
|
||
|
export class PaymentMethod extends Doc {
|
||
|
name?: string;
|
||
|
account?: Account;
|
||
|
}
|