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

14 lines
426 B
C#
Raw Normal View History

2017-09-08 19:39:13 +02:00
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)
{ }
}
}