Files
Umbraco-CMS/src/Umbraco.Infrastructure/HealthCheck/HealthCheckNotificationMethodCollection.cs

14 lines
426 B
C#

using System.Collections.Generic;
using Umbraco.Core.Composing;
using Umbraco.Web.HealthCheck.NotificationMethods;
namespace Umbraco.Web.HealthCheck
{
public class HealthCheckNotificationMethodCollection : BuilderCollectionBase<IHealthCheckNotificationMethod>
{
public HealthCheckNotificationMethodCollection(IEnumerable<IHealthCheckNotificationMethod> items)
: base(items)
{ }
}
}