Create Item

Definition of an item struct.
This commit is contained in:
2023-11-19 15:05:47 -05:00
parent 0f539d31ca
commit 6f2517c830
4 changed files with 35 additions and 1 deletions

4
src/item.rs Normal file
View File

@@ -0,0 +1,4 @@
pub struct Item {
pub name: String,
pub value: i32,
}