add comments to title and subtitle properties

This commit is contained in:
Jeremy Wu 2021-04-15 14:09:01 +10:00
parent 2c8330cba1
commit f0a739128e

View file

@ -13,8 +13,14 @@ namespace Flow.Launcher.Plugin
private string _icoPath;
/// <summary>
/// Provides the title of the result. This is always required.
/// </summary>
public string Title { get; set; }
/// <summary>
/// Provides additional details for the result. This is optional
/// </summary>
public string SubTitle { get; set; } = string.Empty;
/// <summary>