# Instance properties

## Private

### `#attributes`

An optional private property of [`Attributes`](https://docs.angular-package.dev/text/main/attributes) indicates tag attributes.

{% code title="tag.class.ts" %}

```typescript
#attributes?: Attributes;
```

{% endcode %}

### `#name`

Private property of a generic type variable [`Name`](https://docs.angular-package.dev/text/tag/generic-type-variables#tag-less-than-name-...greater-than) as the tag name.

{% code title="tag.class.ts" %}

```typescript
#name: Name;
```

{% endcode %}

### `#wrapper`

Private property holds an instance of [`Wrapper`](https://docs.angular-package.dev/text/wrapper/wrapper) to wrap the given name.

{% code title="tag.class.ts" %}

```typescript
#wrapper: Wrapper<Opening, Closing>;
```

{% endcode %}
