mirror of
https://github.com/frappe/books.git
synced 2024-11-13 00:46:28 +00:00
9 lines
158 B
TypeScript
9 lines
158 B
TypeScript
|
import { Doc } from 'fyo/model/doc';
|
||
|
|
||
|
export class PrintTemplate extends Doc {
|
||
|
name?: string;
|
||
|
type?: string;
|
||
|
template?: string;
|
||
|
isCustom?: boolean;
|
||
|
}
|