Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion Flow.Launcher.Plugin/Result.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,18 @@ public class Result
{

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.
Expand Down