Add HealthCheckCompletedNotification (#15276)

This commit is contained in:
Erik-Jan Westendorp
2023-11-30 15:53:05 +01:00
committed by GitHub
parent d088ed8bf6
commit c0e0e7bad8
5 changed files with 75 additions and 2 deletions

View File

@@ -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; }
}