From f0a739128e894b5adda2c5c01f5f07b0c247b06b Mon Sep 17 00:00:00 2001 From: Jeremy Wu Date: Thu, 15 Apr 2021 14:09:01 +1000 Subject: [PATCH] add comments to title and subtitle properties --- Flow.Launcher.Plugin/Result.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Flow.Launcher.Plugin/Result.cs b/Flow.Launcher.Plugin/Result.cs index 94dde77dd..ac9c10df0 100644 --- a/Flow.Launcher.Plugin/Result.cs +++ b/Flow.Launcher.Plugin/Result.cs @@ -13,8 +13,14 @@ namespace Flow.Launcher.Plugin private string _icoPath; + /// + /// Provides the title of the result. This is always required. + /// public string Title { get; set; } + /// + /// Provides additional details for the result. This is optional + /// public string SubTitle { get; set; } = string.Empty; ///