mirror of
https://github.com/frappe/books.git
synced 2024-11-13 00:46:28 +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;
|
|
}
|