formatting

This commit is contained in:
Vic 2022-11-15 00:48:24 +08:00
parent 7f586b3106
commit 46b9565b85

View file

@ -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]