Files
Umbraco-CMS/src/Umbraco.Web/Models/ContentEditing/ITabbedContent.cs
2018-07-16 20:24:49 +10:00

12 lines
248 B
C#

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