use serde::{Deserialize, Serialize};
#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct LinearMetadata {
#[serde(default)]
pub statuses: Vec<LinearStatus>,
}
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct LinearStatus {
pub id: String,
pub name: String,
#[serde(default)]
pub category: Option<String>,
}