Added template creator (doesn't work without db)

This commit is contained in:
2026-03-10 19:15:03 -05:00
parent 5a8b20a827
commit 39c5021e2f
10 changed files with 322 additions and 8 deletions
+12
View File
@@ -38,3 +38,15 @@ export interface EstimateItem {
scopeId?: string;
subScopeId?: string;
}
export interface TemplateItem {
id: string;
description: string;
quantity: number;
unitPrice: number;
}
export interface Template {
id: string;
name: string;
items: TemplateItem[];
}