Refactor editing, all tests green
This commit is contained in:
12
src/Umbraco.Core/PropertyEditors/DataEditorCollection.cs
Normal file
12
src/Umbraco.Core/PropertyEditors/DataEditorCollection.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using System.Collections.Generic;
|
||||
using Umbraco.Core.Composing;
|
||||
|
||||
namespace Umbraco.Core.PropertyEditors
|
||||
{
|
||||
public class DataEditorCollection : BuilderCollectionBase<IDataEditor>
|
||||
{
|
||||
public DataEditorCollection(IEnumerable<IDataEditor> items)
|
||||
: base(items)
|
||||
{ }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user