# AtsCapabilityKind

- Kind: `enum`
- Package: [Aspire.TypeSystem](/reference/api/csharp/aspire.typesystem.md)
- Version: `13.4.0`
- Namespace: `Aspire.TypeSystem`
- Target framework: `net8.0`
- Source: [GitHub](https://github.com/microsoft/aspire/blob/a3766e994fd2cba86c8ac60b8a80268cab7e6383/src/Aspire.TypeSystem/AtsCapabilityKind.cs)

Kinds of ATS capabilities for code generation.

## Definition

```csharp
namespace Aspire.TypeSystem;

public enum AtsCapabilityKind
```

## Enum Members

| Name | Value | Description |
| --- | --- | --- |
| Method | 0 | Regular extension method capability. |
| PropertyGetter | 1 | Property getter capability (from ExposeProperties=true). |
| PropertySetter | 2 | Property setter capability (from ExposeProperties=true). |
| InstanceMethod | 3 | Instance method capability (from ExposeMethods=true). |
