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

13 lines
301 B
C#
Raw Normal View History

2016-08-13 12:58:58 +02:00
using System.Collections.Generic;
2017-05-30 15:46:25 +02:00
using Umbraco.Core.Composing;
2016-08-13 12:58:58 +02:00
namespace Umbraco.Web.HealthCheck
{
public class HealthCheckCollection : BuilderCollectionBase<HealthCheck>
{
2017-07-20 11:21:28 +02:00
public HealthCheckCollection(IEnumerable<HealthCheck> items)
2016-08-13 12:58:58 +02:00
: base(items)
{ }
}
}