template header & footer margins

This commit is contained in:
Julian Krauser 2025-01-01 13:21:35 +01:00
parent 6154518cbd
commit bfa6eb2347
3 changed files with 34 additions and 12 deletions

View file

@ -5,6 +5,8 @@ export interface TemplateUsageViewModel {
header: { id: number; template: string } | null;
body: { id: number; template: string } | null;
footer: { id: number; template: string } | null;
headerHeight: number | null;
footerHeight: number | null;
}
export interface UpdateTemplateUsageViewModel {
@ -12,4 +14,6 @@ export interface UpdateTemplateUsageViewModel {
headerId: number | null;
bodyId: number | null;
footerId: number | null;
headerHeight: number | null;
footerHeight: number | null;
}