Rename crate folders

This commit is contained in:
2025-12-28 14:50:09 +01:00
parent f15bba480a
commit 245246d083
24 changed files with 6 additions and 6 deletions
+14
View File
@@ -0,0 +1,14 @@
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,
// TODO: add number
}