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

12 lines
219 B
C#

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