aboutsummaryrefslogtreecommitdiff
path: root/src/model/report.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/model/report.rs')
-rw-r--r--src/model/report.rs16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/model/report.rs b/src/model/report.rs
new file mode 100644
index 0000000..4858402
--- /dev/null
+++ b/src/model/report.rs
@@ -0,0 +1,16 @@
+use serde::Serialize;
+
+#[derive(Debug, sqlx::FromRow, Serialize)]
+pub struct Report {
+ pub date: String,
+ pub name: String,
+ pub amount: i64,
+ pub action: Action,
+}
+
+#[derive(Debug, PartialEq, Serialize, sqlx::Type)]
+pub enum Action {
+ Created,
+ Updated,
+ Deleted,
+}