Skip to content

Commit 46b9565

Browse files
formatting
1 parent 7f586b3 commit 46b9565

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

Plugins/Flow.Launcher.Plugin.Program/Views/Models/ProgramSource.cs

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,16 @@ public string Location
2929
}
3030
}
3131

32-
public string Name { get => name ; set => name = value ?? string.Empty; }
32+
public string Name { get => name; set => name = value ?? string.Empty; }
3333
public bool Enabled { get; set; } = true;
3434

35-
public string UniqueIdentifier { get => uniqueIdentifier;
35+
public string UniqueIdentifier
36+
{
37+
get => uniqueIdentifier;
3638
private set
3739
{
3840
uniqueIdentifier = value == null ? string.Empty : value.ToLowerInvariant();
39-
}
41+
}
4042
}
4143

4244
[JsonConstructor]

0 commit comments

Comments
 (0)