LANCommander/LANCommander.UI/Components/Chat/ChatMessage.razor
2025-09-06 13:09:47 -05:00

10 lines
No EOL
168 B
Text

@namespace LANCommander.UI.Components
<p>
@Content
</p>
@code {
[Parameter] public Guid Id { get; set; }
[Parameter] public string Content { get; set; }
}