> ## Documentation Index
> Fetch the complete documentation index at: https://dotnetdocs.com/llms.txt
> Use this file to discover all available pages before exploring further.

# GlobalDropdownConfig

> Represents a dropdown configuration for global navigation in the Mintlify documentation site.

## Definition

**Assembly:** Mintlify.Core.dll

**Namespace:** Mintlify.Core.Models

**Inheritance:** System.Object

## Syntax

```csharp theme={"dark"}
Mintlify.Core.Models.GlobalDropdownConfig
```

## Summary

Represents a dropdown configuration for global navigation in the Mintlify documentation site.

## Remarks

This configuration defines a dropdown menu that appears globally across all sections
and pages, providing users with organized access to multiple related links or sections.

## Constructors

### <Icon icon="hammer" iconType="duotone" color="#419AC5" size={24} className="mr-2" /> .ctor

#### Syntax

```csharp theme={"dark"}
public GlobalDropdownConfig()
```

### <Icon icon="hammer" iconType="duotone" color="#419AC5" size={24} className="mr-2" /> .ctor <Badge color="gray">Inherited</Badge>

<Note>Inherited from `object`</Note>

#### Syntax

```csharp theme={"dark"}
public Object()
```

## Properties

### <Icon icon="tag" iconType="duotone" color="#419AC5" size={24} className="mr-2" /> Color

Gets or sets the color configuration for the dropdown.

#### Syntax

```csharp theme={"dark"}
public Mintlify.Core.Models.ColorPairConfig Color { get; set; }
```

#### Property Value

Type: `Mintlify.Core.Models.ColorPairConfig?`

#### Remarks

Defines custom colors for the dropdown in light and dark modes.
This allows the dropdown to have distinctive styling that matches
your brand or indicates different types of content.

### <Icon icon="tag" iconType="duotone" color="#419AC5" size={24} className="mr-2" /> Description

Gets or sets the description text for the dropdown.

#### Syntax

```csharp theme={"dark"}
public string Description { get; set; }
```

#### Property Value

Type: `string?`

#### Remarks

Optional descriptive text that can appear in the dropdown or as a tooltip.
Provides additional context about what users will find in the dropdown menu.

### <Icon icon="tag" iconType="duotone" color="#419AC5" size={24} className="mr-2" /> Dropdown

Gets or sets the display name for the dropdown button.

#### Syntax

```csharp theme={"dark"}
public string Dropdown { get; set; }
```

#### Property Value

Type: `string`

#### Remarks

Specifies the text that will be shown on the dropdown button. Should be concise
and descriptive of the dropdown's contents, such as "Resources", "Tools",
"Community", etc. This is a required field.

### <Icon icon="tag" iconType="duotone" color="#419AC5" size={24} className="mr-2" /> Hidden

Gets or sets whether this dropdown is hidden by default.

#### Syntax

```csharp theme={"dark"}
public System.Nullable<bool> Hidden { get; set; }
```

#### Property Value

Type: `System.Nullable<bool>?`

#### Remarks

When true, this dropdown will not be visible in the global navigation unless
specifically shown. This can be useful for dropdowns that are in development
or not ready for public access.

### <Icon icon="tag" iconType="duotone" color="#419AC5" size={24} className="mr-2" /> Href

Gets or sets the primary URL or path for this dropdown.

#### Syntax

```csharp theme={"dark"}
public string Href { get; set; }
```

#### Property Value

Type: `string?`

#### Remarks

Specifies where users should be directed when they click directly on the dropdown
button (rather than selecting a specific item). Can be a relative path or absolute URL.
This is optional if the dropdown only contains sub-items.

### <Icon icon="tag" iconType="duotone" color="#419AC5" size={24} className="mr-2" /> Icon

Gets or sets the icon to display alongside the dropdown name.

#### Syntax

```csharp theme={"dark"}
public object Icon { get; set; }
```

#### Property Value

Type: `object?`

#### Remarks

Can be a string icon name from the configured icon library, or an object
with detailed icon configuration including style and library properties.
The icon appears before the dropdown text to provide visual context.

## Methods

### <Icon icon="code-fork" iconType="duotone" color="#419AC5" size={24} className="mr-2" /> Equals <Badge color="gray">Inherited</Badge> <Badge color="orange">Virtual</Badge>

<Note>Inherited from `object`</Note>

#### Syntax

```csharp theme={"dark"}
public virtual bool Equals(object obj)
```

#### Parameters

| Name  | Type      | Description |
| ----- | --------- | ----------- |
| `obj` | `object?` | -           |

#### Returns

Type: `bool`

### <Icon icon="thumbtack" iconType="duotone" color="#419AC5" size={24} className="mr-2" /> Equals <Badge color="gray">Inherited</Badge>

<Note>Inherited from `object`</Note>

#### Syntax

```csharp theme={"dark"}
public static bool Equals(object objA, object objB)
```

#### Parameters

| Name   | Type      | Description |
| ------ | --------- | ----------- |
| `objA` | `object?` | -           |
| `objB` | `object?` | -           |

#### Returns

Type: `bool`

### <Icon icon="code-fork" iconType="duotone" color="#419AC5" size={24} className="mr-2" /> GetHashCode <Badge color="gray">Inherited</Badge> <Badge color="orange">Virtual</Badge>

<Note>Inherited from `object`</Note>

#### Syntax

```csharp theme={"dark"}
public virtual int GetHashCode()
```

#### Returns

Type: `int`

### <Icon icon="function" iconType="duotone" color="#419AC5" size={24} className="mr-2" /> GetType <Badge color="gray">Inherited</Badge>

<Note>Inherited from `object`</Note>

#### Syntax

```csharp theme={"dark"}
public System.Type GetType()
```

#### Returns

Type: `System.Type`

### <Icon icon="function" iconType="duotone" color="#419AC5" size={24} className="mr-2" /> MemberwiseClone <Badge color="gray">Inherited</Badge>

<Note>Inherited from `object`</Note>

#### Syntax

```csharp theme={"dark"}
protected internal object MemberwiseClone()
```

#### Returns

Type: `object`

### <Icon icon="thumbtack" iconType="duotone" color="#419AC5" size={24} className="mr-2" /> ReferenceEquals <Badge color="gray">Inherited</Badge>

<Note>Inherited from `object`</Note>

#### Syntax

```csharp theme={"dark"}
public static bool ReferenceEquals(object objA, object objB)
```

#### Parameters

| Name   | Type      | Description |
| ------ | --------- | ----------- |
| `objA` | `object?` | -           |
| `objB` | `object?` | -           |

#### Returns

Type: `bool`

### <Icon icon="code-fork" iconType="duotone" color="#419AC5" size={24} className="mr-2" /> ToString <Badge color="gray">Inherited</Badge> <Badge color="orange">Virtual</Badge>

<Note>Inherited from `object`</Note>

#### Syntax

```csharp theme={"dark"}
public virtual string ToString()
```

#### Returns

Type: `string?`
