# ContainerDirectory Properties

- Package: [Aspire.Hosting](/reference/api/csharp/aspire.hosting.md)
- Type: [ContainerDirectory](/reference/api/csharp/aspire.hosting/containerdirectory.md)
- Kind: `Properties`
- Members: `1`

Represents a directory in the container file system.

## Entries

- Name: `Entries`
- Modifiers: `get; set`
- Returns: [IEnumerable<ContainerFileSystemItem>](/reference/api/csharp/aspire.hosting/containerfilesystemitem.md)
- Source: [GitHub](https://github.com/microsoft/aspire/blob/bd20f904cde09ecb9c9ae5116a6f13614bf2d7c2/src/Aspire.Hosting/ApplicationModel/ContainerFileSystemCallbackAnnotation.cs)

The contents of the directory to create in the container. Will create specified [ContainerFile](/reference/api/csharp/aspire.hosting/containerfile.md) and [ContainerDirectory](/reference/api/csharp/aspire.hosting/containerdirectory.md) entries in the directory.

```csharp
public IEnumerable<ContainerFileSystemItem> Entries { get; set; }
```
