summaryrefslogtreecommitdiff
path: root/backend/src/models/category_budget.rs
diff options
context:
space:
mode:
authorJoe Carstairs <me@joeac.net>2024-10-16 12:51:21 +0100
committerJoe Carstairs <me@joeac.net>2024-10-16 12:51:21 +0100
commit27b95c9186bd45edd4c982a7cc89cf69cf2c5d46 (patch)
treebf104ff9d64e601bfec5516eb51ef298f3095e9b /backend/src/models/category_budget.rs
parent76974785294089965efc3f55b2a08d4089029c52 (diff)
All backend stuff lives in backend folder
Diffstat (limited to 'backend/src/models/category_budget.rs')
-rw-r--r--backend/src/models/category_budget.rs9
1 files changed, 0 insertions, 9 deletions
diff --git a/backend/src/models/category_budget.rs b/backend/src/models/category_budget.rs
deleted file mode 100644
index 9796261..0000000
--- a/backend/src/models/category_budget.rs
+++ /dev/null
@@ -1,9 +0,0 @@
-use serde::Serialize;
-
-use super::budget::Budget;
-
-#[derive(Serialize)]
-pub struct CategoryBudget {
- pub category_id: i32,
- pub budget: Option<Budget>,
-}