mirror of
https://github.com/hmaxnl/SharpRSS.git
synced 2024-11-10 07:54:20 +01:00
12 lines
290 B
Plaintext
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;
|
||
|
|
||
|
}
|