From 5b9fc427d7f6c7a811c2ff1731271a050514ca9f Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Sat, 14 Mar 2026 17:25:17 +0800 Subject: Add sheet data tree structure --- systems/sheet/src/sheet.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'systems/sheet/src/sheet.rs') diff --git a/systems/sheet/src/sheet.rs b/systems/sheet/src/sheet.rs index 7bdc532..fdcdd67 100644 --- a/systems/sheet/src/sheet.rs +++ b/systems/sheet/src/sheet.rs @@ -33,7 +33,7 @@ pub struct Sheet { name: String, /// Data in the sheet - data: SheetData, + pub(crate) data: SheetData, /// Edit information edit: SheetEdit, -- cgit