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

13 lines
295 B
C#
Raw Normal View History

2016-08-13 12:58:58 +02:00
using System.Collections.Generic;
using Umbraco.Core.DI;
2016-08-13 12:58:58 +02:00
namespace Umbraco.Web.HealthCheck
{
public class HealthCheckCollection : BuilderCollectionBase<HealthCheck>
{
public HealthCheckCollection(IEnumerable<HealthCheck> items)
: base(items)
{ }
}
}