Files
Umbraco-CMS/src/Umbraco.Web/HealthCheck/HealthCheckCollection.cs
2018-11-22 14:05:51 +00:00

13 lines
301 B
C#

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