12 lines
219 B
C#
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; }
|
|
}
|
|
}
|