Add HealthCheckCompletedNotification (#15276)
This commit is contained in:
committed by
GitHub
parent
d088ed8bf6
commit
c0e0e7bad8
@@ -0,0 +1,13 @@
|
||||
using Umbraco.Cms.Core.HealthChecks;
|
||||
|
||||
namespace Umbraco.Cms.Core.Notifications;
|
||||
|
||||
public class HealthCheckCompletedNotification : INotification
|
||||
{
|
||||
public HealthCheckCompletedNotification(HealthCheckResults healthCheckResults)
|
||||
{
|
||||
HealthCheckResults = healthCheckResults;
|
||||
}
|
||||
|
||||
public HealthCheckResults HealthCheckResults { get; }
|
||||
}
|
||||
Reference in New Issue
Block a user