Files
allowance_planner_2000/frontend/allowance-planner-v2/src/app/models/allowance.ts
Huffle daebcdeccd
All checks were successful
Backend Deploy / build (push) Successful in 29s
Backend Build and Test / build (push) Successful in 3m3s
AP-63 (#85)
closes #63

Reviewed-on: #85
2025-05-25 17:05:31 +02:00

10 lines
262 B
TypeScript

export interface Allowance {
id: number;
name: string;
target: number;
// Current allowance value
progress: number;
// Can be any positive number (backend checks for number relative to each other)
weight: number;
colour: string;
}