using EggLink.DanhengServer.Enums.Scene; using SqlSugar; namespace EggLink.DanhengServer.Database.Scene; [SugarTable("Scene")] public class SceneData : BaseDatabaseDataHelper { [SugarColumn(IsJson = true)] public Dictionary>> ScenePropData { get; set; } = []; // Dictionary> [SugarColumn(IsJson = true)] public Dictionary> UnlockSectionIdList { get; set; } = []; // Dictionary> [SugarColumn(IsJson = true)] public Dictionary> CustomSaveData { get; set; } = []; // Dictionary> [SugarColumn(IsJson = true)] public Dictionary> FloorSavedData { get; set; } = []; // Dictionary> } public class ScenePropData { public int PropId; public PropStateEnum State; }