Skip to content

Commit

Permalink
Merge pull request #60 from EdwinBetanc0urt/feature/is-multi-selectio…
Browse files Browse the repository at this point in the history
…n-process

feat: Add `is_multi_selection` process flag.
  • Loading branch information
yamelsenih authored Oct 16, 2024
2 parents 68d965c + 3b25ec2 commit e4dd934
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/models/process.rs
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ pub struct Process {
pub help: Option<String>,
pub is_active: Option<bool>,
pub show_help: Option<String>,
pub is_multi_selection: Option<bool>,
// Report
pub is_report: Option<bool>,
pub is_process_before_launch: Option<bool>,
Expand Down Expand Up @@ -143,6 +144,7 @@ impl Default for Process {
help: None,
is_active: None,
show_help: None,
is_multi_selection: None,
// Report
is_report: None,
is_process_before_launch: None,
Expand Down

0 comments on commit e4dd934

Please sign in to comment.