Add allowance service and create get endpoint for allowance

This commit is contained in:
2025-05-24 14:11:44 +02:00
parent f8d1f195de
commit d81ec1f126
8 changed files with 93 additions and 4 deletions

View File

@@ -0,0 +1,9 @@
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;
}