mirror of
https://github.com/13hannes11/toolbx-tuner.git
synced 2024-09-03 23:21:00 +02:00
10 lines
197 B
Rust
10 lines
197 B
Rust
use crate::toolbx::ToolbxContainer;
|
|
|
|
use super::model::ToolboxPreferences;
|
|
|
|
pub enum ToolboxSettingsDialogMsg {
|
|
Show(ToolbxContainer),
|
|
ReplyToolbxSettings(ToolboxPreferences),
|
|
Close,
|
|
}
|