SharpRSS/WebSharpRSS/Pages/Modify.razor
2023-07-09 19:28:36 +02:00

12 lines
290 B
Plaintext

@page "/Modify"
<h3>Modify</h3>
@code {
[Parameter]
[SupplyParameterFromQuery(Name = "cid")]
public string CategoryId { get; set; } = string.Empty;
[Parameter]
[SupplyParameterFromQuery(Name = "sid")]
public string SyndicationId { get; set; } = string.Empty;
}