namespace ColdMint.scripts.levelGraphEditor; public interface IRoomNodeData { string? Id { get; set; } /// /// Title /// 标题 /// string? Title { get; set; } /// /// 描述 /// Description /// string? Description { get; set; } }