Files
Umbraco-CMS/src/Umbraco.Core/HealthChecks/HealthCheckCollection.cs
Bjarke Berg 027caa05db File moves
2021-02-03 08:00:03 +01:00

13 lines
303 B
C#

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