Load shopping list from server on app startup

This commit is contained in:
2025-12-20 20:35:54 +01:00
parent 8059ab7b85
commit 22f829f579
10 changed files with 1503 additions and 1697 deletions
+13
View File
@@ -0,0 +1,13 @@
use serde::{Deserialize, Serialize};
#[derive(Serialize, Deserialize, Default, Debug, Clone)]
pub struct Item {
pub name: String,
pub data: ItemData,
}
#[derive(Serialize, Deserialize, Default, Debug, Clone)]
pub struct ItemData {
pub checked: bool,
}