@using System.ComponentModel.DataAnnotations
@if (report.Type == "op")
{
/@report.ReportedPost.Board/
}
else
{
/@report.ReportedComment/
}
#@report.ReportID
@report.Type
Reason: @report.ReportReason
Explaination: @report.ReportExlaination
Ban Reported User
Ban Reporter
@if (report.Type == "op")
{
}
else
{
}
@code {
[Parameter]
[Required]
public ReportData report { get; set; }
private async Task banTarget()
{
}
private async Task banReporter()
{
}
}