Compare commits

..

No commits in common. "17b324d338ef4fafa2539a4f5acd6266d1f389cc" and "fb1b7e7d0fc73a75f867aaa1aa853268741a7ac8" have entirely different histories.

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;