chore: cleanup

This commit is contained in:
limited_dev 2023-02-03 11:33:56 +01:00
parent 0e725b065a
commit f5ac34e639
17 changed files with 67 additions and 3 deletions

View file

@ -0,0 +1,17 @@
@page "/report/{type}/{board}/{id}"
@using System.ComponentModel.DataAnnotations
<h3>Report</h3>
@code {
[Parameter]
[Required]
public string type { get; set; }
[Parameter]
[Required]
public string board { get; set; }
[Parameter]
[Required]
public string id { get; set; }
}