mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
formatting
This commit is contained in:
parent
7f586b3106
commit
46b9565b85
1 changed files with 5 additions and 3 deletions
|
|
@ -29,14 +29,16 @@ namespace Flow.Launcher.Plugin.Program.Views.Models
|
|||
}
|
||||
}
|
||||
|
||||
public string Name { get => name ; set => name = value ?? string.Empty; }
|
||||
public string Name { get => name; set => name = value ?? string.Empty; }
|
||||
public bool Enabled { get; set; } = true;
|
||||
|
||||
public string UniqueIdentifier { get => uniqueIdentifier;
|
||||
public string UniqueIdentifier
|
||||
{
|
||||
get => uniqueIdentifier;
|
||||
private set
|
||||
{
|
||||
uniqueIdentifier = value == null ? string.Empty : value.ToLowerInvariant();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[JsonConstructor]
|
||||
|
|
|
|||
Loading…
Reference in a new issue