19 lines
377 B
C#
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
|
|
{
|
|
|
|
|
|
|
|
}
|
|
}
|