UPDATE: Update README to include a minimal ROADMAD

This commit is contained in:
Nicolás Hatcher
2023-12-01 08:53:12 +01:00
parent c5b8efd83d
commit c63acd72d0
8 changed files with 229 additions and 11 deletions

View File

@@ -651,3 +651,13 @@ pub struct Border {
#[serde(skip_serializing_if = "Option::is_none")]
pub diagonal: Option<BorderItem>,
}
/// Information need to show a sheet tab in the UI
/// The color is serialized only if it is not Color::None
#[derive(Serialize, Deserialize, Debug, PartialEq)]
pub struct SheetInfo {
pub name: String,
pub state: String,
pub sheet_id: u32,
pub color: Option<String>,
}