# DinaZen

{% tabs %}
{% tab title=".csproj" %}

```xml
<PropertyGroup>
  <WarningsAsErrors>RZ10012</WarningsAsErrors>
</PropertyGroup>
<ItemGroup>
  <Using Include="Dinaup.extensions">
    <Static>True</Static>
  </Using>
</ItemGroup>
```

{% endtab %}

{% tab title="\_Imports.razor" %}

```csharp
@using DinaZen.Components
```

{% endtab %}
{% endtabs %}

## X

* nunca: Property="Number"
* En su lugar property=nameof(class.Number)

## Loders

{% tabs %}
{% tab title="Procesando" %}

```
<Loader /> 
```

{% endtab %}

{% tab title="Cargando UI" %}

```
<RadzenSkeleton /> 
```

{% endtab %}
{% endtabs %}

## Dialogs

```

<FooterContent>
		<div class="d-flex gap-2  justify-content-end">
			<RadzenButton Text="Cancelar"   Variant=Variant.Text ButtonStyle="ButtonStyle.Danger" 	  Click=@CancelarAsync />
		<RadzenButton Text="Aceptar"   ButtonStyle="ButtonStyle.Success" 	  Click=@AceptarAsync 	  IsBusy=@AceptandoIsbussy />
	</div>
</FooterContent>
```

* Cancelar: Variant=Variant.Text ButtonStyle="ButtonStyle.Danger"
* Aceptar: ButtonStyle="ButtonStyle.Success"


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://doc.dinaup.com/desarrollo/dinazen.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
