Files
Umbraco-CMS/src/Umbraco.Core/Models/ContentEditing/ITabbedContent.cs
2020-02-24 08:21:53 +01:00

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; }
}
}