Added template creator (doesn't work without db)
This commit is contained in:
@@ -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[];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user