2018-07-20 16:36:46 +02:00
|
|
|
|
using Umbraco.Core.Composing;
|
2017-09-08 19:39:13 +02:00
|
|
|
|
using Umbraco.Web.HealthCheck.NotificationMethods;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Umbraco.Web.HealthCheck
|
|
|
|
|
|
{
|
|
|
|
|
|
internal class HealthCheckNotificationMethodCollectionBuilder : LazyCollectionBuilderBase<HealthCheckNotificationMethodCollectionBuilder, HealthCheckNotificationMethodCollection, IHealthCheckNotificationMethod>
|
|
|
|
|
|
{
|
|
|
|
|
|
protected override HealthCheckNotificationMethodCollectionBuilder This => this;
|
|
|
|
|
|
}
|
2017-09-23 10:08:18 +02:00
|
|
|
|
}
|