OnTopReplica/src/OnTopReplica/Update/UpdateCheckCompletedEventArgs.cs
Lorenz Cuno Klopfenstein a7774b6677 Code re-org
2018-04-10 18:52:40 +02:00

16 lines
315 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; }
}
}