summaryrefslogtreecommitdiff
path: root/rust/schist_models/src/category_balance.rs
diff options
context:
space:
mode:
Diffstat (limited to 'rust/schist_models/src/category_balance.rs')
-rw-r--r--rust/schist_models/src/category_balance.rs7
1 files changed, 7 insertions, 0 deletions
diff --git a/rust/schist_models/src/category_balance.rs b/rust/schist_models/src/category_balance.rs
new file mode 100644
index 0000000..796b40b
--- /dev/null
+++ b/rust/schist_models/src/category_balance.rs
@@ -0,0 +1,7 @@
+use serde::Serialize;
+
+#[derive(Serialize)]
+pub struct CategoryBalance {
+ pub category_id: i32,
+ pub balance: i32,
+}