2018-07-13 12:45:04 +10:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Umbraco.Web.Models.ContentEditing
|
|
|
|
|
|
{
|
2018-07-16 20:24:49 +10:00
|
|
|
|
|
2018-08-16 23:30:33 +10:00
|
|
|
|
public interface ITabbedContent<T>
|
2018-07-16 20:24:49 +10:00
|
|
|
|
where T : ContentPropertyBasic
|
2018-07-13 12:45:04 +10:00
|
|
|
|
{
|
2018-08-16 23:30:33 +10:00
|
|
|
|
IEnumerable<Tab<T>> Tabs { get; }
|
2018-07-13 12:45:04 +10:00
|
|
|
|
}
|
|
|
|
|
|
}
|