# AtsDtoPropertyInfo

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

Represents a property of a DTO type.

## Definition

```csharp
namespace Aspire.TypeSystem;

public sealed class AtsDtoPropertyInfo
{
    // ...
}
```

## Constructors

- [AtsDtoPropertyInfo](/reference/api/csharp/aspire.typesystem/atsdtopropertyinfo/constructors.md#constructor)

## Properties

- [Description](/reference/api/csharp/aspire.typesystem/atsdtopropertyinfo/properties.md#description) : `string?` `get; init` -- Gets or sets a description of this property.
- [IsOptional](/reference/api/csharp/aspire.typesystem/atsdtopropertyinfo/properties.md#isoptional) : `bool` `get; init` -- Gets or sets whether this property is optional (nullable or has default).
- [Name](/reference/api/csharp/aspire.typesystem/atsdtopropertyinfo/properties.md#name) : `string` `get; init` -- Gets or sets the property name.
- [Type](/reference/api/csharp/aspire.typesystem/atsdtopropertyinfo/properties.md#type) : [AtsTypeRef](/reference/api/csharp/aspire.typesystem/atstyperef.md) `get; init` -- Gets or sets the property type reference.
