13 lines
303 B
C#
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)
|
|
{ }
|
|
}
|
|
}
|