13 lines
364 B
C#
13 lines
364 B
C#
|
|
using System.Collections.Generic;
|
|||
|
|
using Umbraco.Core.Composing;
|
|||
|
|
|
|||
|
|
namespace Umbraco.Core.PropertyEditors
|
|||
|
|
{
|
|||
|
|
public class DataValueReferenceFactoryCollection : BuilderCollectionBase<IDataValueReferenceFactory>
|
|||
|
|
{
|
|||
|
|
public DataValueReferenceFactoryCollection(IEnumerable<IDataValueReferenceFactory> items)
|
|||
|
|
: base(items)
|
|||
|
|
{ }
|
|||
|
|
}
|
|||
|
|
}
|