# ContainerFilesDestinationAnnotation Properties

- Package: [Aspire.Hosting](/reference/api/csharp/aspire.hosting.md)
- Type: [ContainerFilesDestinationAnnotation](/reference/api/csharp/aspire.hosting/containerfilesdestinationannotation.md)
- Kind: `Properties`
- Members: `2`

Represents an annotation that specifies a source resource and destination path for copying container files.

## DestinationPath

- Name: `DestinationPath`
- Modifiers: `get; init`
- Returns: `string`
- Source: [GitHub](https://github.com/microsoft/aspire/blob/bd20f904cde09ecb9c9ae5116a6f13614bf2d7c2/src/Aspire.Hosting/ApplicationModel/ContainerFilesDestinationAnnotation.cs)

Gets or sets the file system path where the container files will be copied into the destination.

```csharp
public string DestinationPath { get; init; }
```

## Source

- Name: `Source`
- Modifiers: `get; init`
- Returns: [IResource](/reference/api/csharp/aspire.hosting/iresource.md)
- Source: [GitHub](https://github.com/microsoft/aspire/blob/bd20f904cde09ecb9c9ae5116a6f13614bf2d7c2/src/Aspire.Hosting/ApplicationModel/ContainerFilesDestinationAnnotation.cs)

Gets the resource that provides access to the container files to be copied.

```csharp
public IResource Source { get; init; }
```
