hn-dotnet/Apps/Client/Shared/Comment.razor
2020-12-29 20:28:23 +01:00

7 lines
113 B
Plaintext

<p>@Item.Content</p>
<p>- @Item.CreatedByName</p>
@code {
[Parameter]
public CommentDto Item { get; set; }
}