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