Merge pull request #411 from Flow-Launcher/fix_null_subtitle

Dev branch: Fix optional subtitle
This commit is contained in:
Jeremy Wu 2021-04-15 17:36:41 +10:00 committed by GitHub
commit 41c3f8a793
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -10,9 +10,18 @@ namespace Flow.Launcher.Plugin
{
private string _pluginDirectory;
private string _icoPath;
/// <summary>
/// Provides the title of the result. This is always required.
/// </summary>
public string Title { get; set; }
public string SubTitle { get; set; }
/// <summary>
/// Provides additional details for the result. This is optional
/// </summary>
public string SubTitle { get; set; } = string.Empty;
/// <summary>
/// This holds the action keyword that triggered the result.