Added app configuration
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
namespace TheXamlGuy.TaskbarGroup.Core
|
||||
{
|
||||
public class ShortcutConfiguration
|
||||
{
|
||||
private string? _shortcutDirectory;
|
||||
|
||||
public string? ShortcutDirectory
|
||||
{
|
||||
get => !string.IsNullOrEmpty(_shortcutDirectory) ? Environment.ExpandEnvironmentVariables(_shortcutDirectory) : null;
|
||||
set => _shortcutDirectory = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user