2
0
mirror of https://github.com/frappe/books.git synced 2025-01-22 22:58:28 +00:00

17 lines
394 B
TypeScript
Raw Normal View History

2023-06-13 13:37:39 +05:30
import { Attachment } from 'fyo/core/types';
import { Doc } from 'fyo/model/doc';
import { HiddenMap } from 'fyo/model/types';
export class PrintSettings extends Doc {
2023-06-13 13:37:39 +05:30
logo?: Attachment;
email?: string;
phone?: string;
address?: string;
companyName?: string;
color?: string;
font?: string;
displayLogo?: boolean;
amountInWords?: boolean;
2023-03-13 21:14:10 +05:30
override hidden: HiddenMap = {};
}