# UvAppResource Constructors

- Package: [CommunityToolkit.Aspire.Hosting.Python.Extensions](/reference/api/csharp/communitytoolkit.aspire.hosting.python.extensions.md)
- Type: [UvAppResource](/reference/api/csharp/communitytoolkit.aspire.hosting.python.extensions/uvappresource.md)
- Kind: `Constructors`
- Members: `1`

Represents a Uv application.

## UvAppResource(string, string, string)

- Name: `Constructor(string, string, string)`
- Source: [GitHub](https://github.com/CommunityToolkit/Aspire/blob/d9dc6fc02412d7398c5722840513d99965a6e98f/src/CommunityToolkit.Aspire.Hosting.Python.Extensions/UvAppResource.cs#L13)

Represents a Uv application.

```csharp
public class UvAppResource
{
    public UvAppResource(
        string name,
        string executablePath,
        string workingDirectory)
    {
        // ...
    }
}
```

## Parameters

- `name` (`string`)
  The name of the resource.
- `executablePath` (`string`)
  The path to the executable used to run the python app.
- `workingDirectory` (`string`)
  The working directory for uv.
