bulletboards/ImageBoardServerApp/Pages/Components/ReportPage.razor

17 lines
323 B
Text
Raw Normal View History

2023-02-03 10:33:56 +00:00
@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; }
}