Fix compilation error #144

Merged
bustikiller merged 1 commits from fix-build into main 2024-12-09 19:12:57 +00:00
Showing only changes of commit 05392bc747 - Show all commits

View File

@ -8,9 +8,9 @@ export type PricingType = typeof pricingTypes[number];
export class Expense implements Entity {
id?: string;
name: string;
amount: number;
pricingType: PricingType;
name?: string;
amount?: number;
pricingType?: PricingType;
constructor(id?: string, name?: string, amount?: number, pricingType?: PricingType) {
this.id = id;