mxl_player_components/ui/message_dialog/
model.rs1use super::messages::MessageDialogType;
2use mxl_relm4_components::relm4::gtk;
3
4#[derive(Debug)]
5pub struct MessageDialog {
6 pub(super) hidden: bool,
7 pub(super) dialog_type: MessageDialogType,
8 pub(super) title: String,
9 pub(super) text_buffer: gtk::TextBuffer,
10}