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

13 lines
295 B
C#

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