use serde::Deserialize;
impl_wrapper!(LabelId, "Type-safe label id wrapper");
#[derive(Clone, Debug, Deserialize, PartialEq, Eq, PartialOrd, Ord, Hash)]
#[serde(rename_all = "camelCase")]
pub struct Label {
pub id: LabelId,
pub value: String,
pub color: String,
}