Files
Umbraco-CMS/src/Umbraco.Web/PropertyEditors/ListViewPropertyEditor.cs
2013-09-19 10:37:57 +02:00

19 lines
377 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Umbraco.Core;
using Umbraco.Core.PropertyEditors;
namespace Umbraco.Web.PropertyEditors
{
[PropertyEditor(Constants.PropertyEditors.ListViewAlias, "List view", "listview")]
public class ListViewPropertyEditor : PropertyEditor
{
}
}