15 lines
565 B
C#
15 lines
565 B
C#
using Umbraco.Core.Composing;
|
|
using Umbraco.Web.HealthCheck.NotificationMethods;
|
|
|
|
namespace Umbraco.Web.HealthCheck
|
|
{
|
|
internal class HealthCheckNotificationMethodCollectionBuilder : LazyCollectionBuilderBase<HealthCheckNotificationMethodCollectionBuilder, HealthCheckNotificationMethodCollection, IHealthCheckNotificationMethod>
|
|
{
|
|
public HealthCheckNotificationMethodCollectionBuilder(IContainer container)
|
|
: base(container)
|
|
{ }
|
|
|
|
protected override HealthCheckNotificationMethodCollectionBuilder This => this;
|
|
}
|
|
}
|