summaryrefslogtreecommitdiff
path: root/dichroism/src/models/product.rs
diff options
context:
space:
mode:
Diffstat (limited to 'dichroism/src/models/product.rs')
-rw-r--r--dichroism/src/models/product.rs13
1 files changed, 0 insertions, 13 deletions
diff --git a/dichroism/src/models/product.rs b/dichroism/src/models/product.rs
deleted file mode 100644
index 4a3d782..0000000
--- a/dichroism/src/models/product.rs
+++ /dev/null
@@ -1,13 +0,0 @@
-use super::PhotoSet;
-
-#[derive(Debug, Clone)]
-pub struct Product {
- pub id: Option<i32>,
- pub name: String,
- pub description: String,
- pub cents: i32,
- pub quantity: i32,
- pub featured: bool,
- pub photo_set: PhotoSet,
- pub category: String,
-}