9 lines
203 B
C#
9 lines
203 B
C#
using Pilz.Updating.Client.Installer;
|
|
|
|
namespace Pilz.Updating.Client;
|
|
|
|
public class UpdateClientEventArgs(UpdateClient client) : EventArgs
|
|
{
|
|
public UpdateClient Client { get; init; } = client;
|
|
}
|