rework client and remove separated update installer (gui not finished yet)

This commit is contained in:
2024-06-26 17:24:08 +02:00
parent 5bc0c374cf
commit 07853467b1
68 changed files with 681 additions and 1462 deletions

View File

@@ -0,0 +1,11 @@
using Pilz.Updating.Client.Installer;
namespace Pilz.Updating.Client;
public class UpdateStatusEventArgs(UpdateClient client, UpdateStatus status, UpdateStatusEvent state, bool canCancel) : UpdateClientEventArgs(client)
{
public UpdateStatus Status { get; } = status;
public UpdateStatusEvent Event { get; } = state;
public bool CanCancel { get; } = canCancel;
public bool Cancel { get; set; }
}