# IPackageMetadata Properties

- Package: [CommunityToolkit.Aspire.Hosting.SqlDatabaseProjects](/reference/api/csharp/communitytoolkit.aspire.hosting.sqldatabaseprojects.md)
- Type: [IPackageMetadata](/reference/api/csharp/communitytoolkit.aspire.hosting.sqldatabaseprojects/ipackagemetadata.md)
- Kind: `Properties`
- Members: `3`

Represents metadata for a referenced NuGet package.

## PackageId

- Name: `PackageId`
- Modifiers: `abstract` `get`
- Returns: `string`

Gets the unique identifier of the package.

```csharp
public abstract string PackageId { get; }
```

## PackagePath

- Name: `PackagePath`
- Modifiers: `abstract` `get`
- Returns: `string`

Gets the physical location on disk of the package.

```csharp
public abstract string PackagePath { get; }
```

## PackageVersion

- Name: `PackageVersion`
- Modifiers: `abstract` `get`
- Returns: `Version`

Gets the version of the package.

```csharp
public abstract Version PackageVersion { get; }
```
