Files
Umbraco-CMS/src/Umbraco.Core/HealthChecks/HealthCheckCollection.cs

13 lines
303 B
C#
Raw Normal View History

2016-08-13 12:58:58 +02:00
using System.Collections.Generic;
2017-05-30 15:46:25 +02:00
using Umbraco.Core.Composing;
2016-08-13 12:58:58 +02:00
2021-02-03 07:58:42 +01:00
namespace Umbraco.Core.HealthChecks
2016-08-13 12:58:58 +02:00
{
2021-02-03 07:58:42 +01:00
public class HealthCheckCollection : BuilderCollectionBase<HealthCheck>
2016-08-13 12:58:58 +02:00
{
2021-02-03 07:58:42 +01:00
public HealthCheckCollection(IEnumerable<HealthCheck> items)
2016-08-13 12:58:58 +02:00
: base(items)
{ }
}
}