13 lines
251 B
C#
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; }
|
|
}
|
|
}
|