use super::PhotoSet; #[derive(Debug, Clone)] pub struct Product { pub id: Option, pub name: String, pub description: String, pub cents: i32, pub quantity: i32, pub featured: bool, pub photo_set: PhotoSet, pub category: String, }