mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
set default values of fields
This commit is contained in:
parent
54f408aead
commit
0374e9f56f
1 changed files with 5 additions and 7 deletions
|
|
@ -365,14 +365,12 @@ namespace Flow.Launcher.Plugin.Program.Programs
|
|||
{
|
||||
private string _uid = string.Empty;
|
||||
public string UniqueIdentifier { get => _uid; set => _uid = value == null ? string.Empty : value.ToLowerInvariant(); }
|
||||
public string DisplayName { get; set; }
|
||||
public string Description { get; set; }
|
||||
public string UserModelId { get; set; }
|
||||
public string BackgroundColor { get; set; } = "transparent";
|
||||
|
||||
public string EntryPoint { get; set; }
|
||||
public string DisplayName { get; set; } = string.Empty;
|
||||
public string Description { get; set; } = string.Empty;
|
||||
public string UserModelId { get; set; } = string.Empty;
|
||||
public string BackgroundColor { get; set; } = string.Empty;
|
||||
public string Name => DisplayName;
|
||||
public string Location { get; set; }
|
||||
public string Location { get; set; } = string.Empty;
|
||||
|
||||
public bool Enabled { get; set; } = false;
|
||||
public bool CanRunElevated { get; set; } = false;
|
||||
|
|
|
|||
Loading…
Reference in a new issue