This commit is contained in:
mmrbnjd
2024-04-14 16:09:36 +03:30
parent eaf3264c6c
commit f7e3f3b02a
9 changed files with 266 additions and 38 deletions

View File

@@ -1,5 +1,13 @@
<h3>Verification</h3>
@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();
}
}