PT Run Service notification improvements (#9772)

This commit is contained in:
Davide Giacometti
2021-02-19 18:17:52 +01:00
committed by GitHub
parent a29b3aa500
commit ff4a78a7f9
5 changed files with 80 additions and 20 deletions

View File

@@ -78,7 +78,8 @@ namespace Wox.Plugin
/// <summary>
/// Show toast notification
/// </summary>
/// <param name="text">Notification text</param>
void ShowNotification(string text);
/// <param name="text">Notification main text</param>
/// <param name="secondaryText">Notification optional text</param>
void ShowNotification(string text, string secondaryText = null);
}
}