1use serde::{Deserialize, Serialize}; 2 3#[derive(Serialize, Deserialize, Debug, Clone)] 4pub struct CarouselSlot { 5 pub title: String, 6 pub description: String, 7 pub link: String, 8}