use std::collections::BTreeMap;
#[derive(Debug, Clone, Default, PartialEq)]
pub struct Camera {
pub maker: String,
pub maker_localized: BTreeMap<String, String>,
pub model: String,
pub model_localized: BTreeMap<String, String>,
pub variant: Option<String>,
pub mount: String,
pub crop_factor: f32,
pub aspect_ratio: Option<f32>,
pub score: i32,
}