We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f586b3 commit 46b9565Copy full SHA for 46b9565
Plugins/Flow.Launcher.Plugin.Program/Views/Models/ProgramSource.cs
@@ -29,14 +29,16 @@ public string Location
29
}
30
31
32
- public string Name { get => name ; set => name = value ?? string.Empty; }
+ public string Name { get => name; set => name = value ?? string.Empty; }
33
public bool Enabled { get; set; } = true;
34
35
- public string UniqueIdentifier { get => uniqueIdentifier;
+ public string UniqueIdentifier
36
+ {
37
+ get => uniqueIdentifier;
38
private set
39
{
40
uniqueIdentifier = value == null ? string.Empty : value.ToLowerInvariant();
- }
41
+ }
42
43
44
[JsonConstructor]
0 commit comments