Detect when [SupplyParameterFromQuery]
attributes are used without the [Parameter]
attributes.
using Microsoft.AspNetCore.Components;
@code {
[SupplyParameterFromQuery] // non-compliant
public int A { get; set; }
[Parameter]
[SupplyParameterFromQuery] // ok as the property has the Parameter attribute
public int B { get; set; }
}