SharpRSS/WebSharpRSS/Shared/ReadDialog.razor

13 lines
211 B
Plaintext
Raw Normal View History

2023-05-26 21:54:12 +02:00
@using WebSharpRSS.Models
<MudDialog>
<DialogContent>
<ItemView FeedItem="Data"/>
</DialogContent>
</MudDialog>
@code {
[Parameter]
2023-06-16 22:53:26 +02:00
public SyndicationItemData? Data { get; set; }
2023-05-26 21:54:12 +02:00
}