mirror of https://github.com/ogoun/Zero.git
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.
21 lines
418 B
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;
|
|
}
|
|
}
|
|
}
|