Code quality

This commit is contained in:
Jack251970 2025-06-17 16:31:11 +08:00
parent 42dc582ec1
commit 12b51eb239

View file

@ -47,6 +47,9 @@ public partial class QuickAccessLinkSettings : INotifyPropertyChanged
}
}
public bool IsFileSelected { get; set; } = true; // Default to File
public bool IsFolderSelected { get; set; }
private bool IsEdit { get; }
private AccessLink SelectedAccessLink { get; }
@ -162,12 +165,4 @@ public partial class QuickAccessLinkSettings : INotifyPropertyChanged
{
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
}
public bool IsFileSelected { get; set; } = true; // Default to File
public bool IsFolderSelected { get; set; }
public QuickAccessLinkSettings()
{
InitializeComponent();
}
}