File moves

This commit is contained in:
Bjarke Berg
2021-02-03 08:00:03 +01:00
parent 0f226b590a
commit 027caa05db
9 changed files with 0 additions and 9 deletions

View File

@@ -0,0 +1,12 @@
using System.Collections.Generic;
using Umbraco.Core.Composing;
namespace Umbraco.Core.HealthChecks
{
public class HealthCheckCollection : BuilderCollectionBase<HealthCheck>
{
public HealthCheckCollection(IEnumerable<HealthCheck> items)
: base(items)
{ }
}
}