1#[derive(Debug, Clone, PartialEq)] 2pub struct Project { 3 pub id: i64, 4 pub name: String, 5 pub description: Option<String>, 6 pub path: Option<String>, 7 pub created_at: String, 8 pub updated_at: String, 9}