using System.ComponentModel; namespace Connected.Components; public enum TabHeaderPosition { /// /// Additional content is placed after the the first tab /// [Description("after")] After, /// /// Additional content is placed before the first tab /// [Description("before")] Before, /// /// No additional content is rendered /// [Description("none")] None, }