You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Zero/ZeroLevel/Services/AsService/Install/InstallEventArgs.cs

21 lines
418 B

using System.Collections;
namespace ZeroLevel.Services.AsService
{
public delegate void InstallEventHandler(object sender, InstallEventArgs e);
public class InstallEventArgs
{
public IDictionary SavedSate { get; }
public InstallEventArgs()
{
}
public InstallEventArgs(IDictionary savedSate)
{
this.SavedSate = savedSate;
}
}
}

Powered by TurnKey Linux.