* Make implementations sealed and internal if possible * Remove usings * Making some models sealed as well * Making more models sealed * Last model changes * Un-seal ApiContentResponse --------- Co-authored-by: kjac <kja@umbraco.dk>
12 lines
282 B
C#
12 lines
282 B
C#
using Umbraco.Cms.Core.Composing;
|
|
|
|
namespace Umbraco.Cms.Core.DeliveryApi;
|
|
|
|
public sealed class SelectorHandlerCollection : BuilderCollectionBase<ISelectorHandler>
|
|
{
|
|
public SelectorHandlerCollection(Func<IEnumerable<ISelectorHandler>> items)
|
|
: base(items)
|
|
{
|
|
}
|
|
}
|