OnTopReplica/OnTopReplica/Update/UpdateCheckCompletedEventArgs.cs
Lorenz Cuno Klopfenstein 3b219b69bd Added custom updating logic.
Added NSIS installer to project.
Fixed memory leak in WM_SIZING message handling.
2010-08-24 00:25:41 +02:00

16 lines
330 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace OnTopReplica.Update {
class UpdateCheckCompletedEventArgs : EventArgs {
public UpdateInformation Information { get; set; }
public bool Success { get; set; }
public Exception Error { get; set; }
}
}