Files
Umbraco-CMS/src/Umbraco.Web/HealthCheck/HealthCheckNotificationMethodCollectionBuilder.cs
2018-11-26 16:54:32 +01:00

11 lines
438 B
C#

using Umbraco.Core.Composing;
using Umbraco.Web.HealthCheck.NotificationMethods;
namespace Umbraco.Web.HealthCheck
{
internal class HealthCheckNotificationMethodCollectionBuilder : LazyCollectionBuilderBase<HealthCheckNotificationMethodCollectionBuilder, HealthCheckNotificationMethodCollection, IHealthCheckNotificationMethod>
{
protected override HealthCheckNotificationMethodCollectionBuilder This => this;
}
}