gui: add event to handle EndUpdating

This commit is contained in:
2024-06-27 09:38:54 +02:00
parent 682a96bf85
commit a68ccb5daf
7 changed files with 26 additions and 6 deletions

View File

@@ -0,0 +1,6 @@
namespace Pilz.Updating.Client.Gui;
public class UpdateEndedEventArgs(bool success) : EventArgs
{
public bool Success { get; } = success;
}