Files
Umbraco-CMS/src/Umbraco.Web/Models/ContentEditing/IContentProperties.cs

13 lines
251 B
C#

using System.Collections.Generic;
using Umbraco.Core.Models;
namespace Umbraco.Web.Models.ContentEditing
{
public interface IContentProperties<T>
where T : ContentPropertyBasic
{
IEnumerable<T> Properties { get; }
}
}