summaryrefslogtreecommitdiff
path: root/dichroism/src/models/product.rs
diff options
context:
space:
mode:
authorAdam T. Carpenter <atc@53hor.net>2020-10-31 10:14:31 -0400
committerAdam T. Carpenter <atc@53hor.net>2020-10-31 10:14:31 -0400
commit3e1eadbbfdca1b2c0cb32ba4c8e1160a60e0ccb8 (patch)
tree3b712bc31a6db0a16ddfd4a02529d8b2497a5c54 /dichroism/src/models/product.rs
parent00c71f6baff136a88805ca2e3f9ef72453ac9f35 (diff)
downloadtheglassyladies-3e1eadbbfdca1b2c0cb32ba4c8e1160a60e0ccb8.tar.xz
theglassyladies-3e1eadbbfdca1b2c0cb32ba4c8e1160a60e0ccb8.zip
All basic functionality implemented.
Diffstat (limited to 'dichroism/src/models/product.rs')
-rw-r--r--dichroism/src/models/product.rs7
1 files changed, 4 insertions, 3 deletions
diff --git a/dichroism/src/models/product.rs b/dichroism/src/models/product.rs
index be0a5ec..4a3d782 100644
--- a/dichroism/src/models/product.rs
+++ b/dichroism/src/models/product.rs
@@ -1,11 +1,12 @@
use super::PhotoSet;
+#[derive(Debug, Clone)]
pub struct Product {
- pub id: u32,
+ pub id: Option<i32>,
pub name: String,
pub description: String,
- pub cents: u32,
- pub quantity: u32,
+ pub cents: i32,
+ pub quantity: i32,
pub featured: bool,
pub photo_set: PhotoSet,
pub category: String,