Add working folder and minimized launch options

This commit is contained in:
Ray Berezowski
2026-08-26 22:37:09 -04:00
parent c5fd18e6d3
commit 57b2c4b0cc
9 changed files with 160 additions and 18 deletions

View File

@@ -23,6 +23,8 @@ public sealed class LauncherItem
public string? Arguments { get; set; }
public string? WorkingFolder { get; set; }
public string? IconPath { get; set; }
public bool IsFavorite { get; set; }
@@ -31,6 +33,8 @@ public sealed class LauncherItem
public bool RunAsAdmin { get; set; }
public bool StartMinimized { get; set; }
public LauncherDisplayMode DisplayMode { get; set; } = LauncherDisplayMode.CompactList;
public List<LauncherItem> Children { get; set; } = [];