using System.ComponentModel;
namespace Tizen.NUI.Binding
{
///
/// Marker interface for returning platform-specific configuration elements.
///
/// The platform type.
/// The element type.
[EditorBrowsable(EditorBrowsableState.Never)]
internal interface IPlatformElementConfiguration : IConfigElement
where TPlatform : IConfigPlatform
where TElement : Element
{
}
}