mirror of
https://github.com/frappe/books.git
synced 2024-11-10 07:40:55 +00:00
11 lines
232 B
TypeScript
11 lines
232 B
TypeScript
|
import { Attachment } from 'fyo/core/types';
|
||
|
import { Doc } from 'fyo/model/doc';
|
||
|
|
||
|
export abstract class StockTransfer extends Doc {
|
||
|
name?: string;
|
||
|
date?: string;
|
||
|
party?: string;
|
||
|
terms?: string;
|
||
|
attachment?: Attachment;
|
||
|
}
|