Files
moadiran/TaxPayerFull/Pages/Verification.razor
mmrbnjd f7e3f3b02a ...
2024-04-14 16:09:36 +03:30

14 lines
291 B
Plaintext

@using Shared.DTOs
@page "/Verification/{model}"
<h3>Verification</h3>
@code {
[Parameter]
public VerificationCodeDto? model { get; set; }
protected override async Task OnParametersSetAsync()
{
var dfsf = model;
await base.OnParametersSetAsync();
}
}