2025-09-06 13:09:47 -05:00
|
|
|
@namespace LANCommander.UI.Components
|
|
|
|
|
|
2025-12-30 18:08:20 -06:00
|
|
|
<div class="chat-message" id="@Id">
|
|
|
|
|
<Markdown Content="@Content" />
|
|
|
|
|
</div>
|
2025-08-24 19:34:14 -05:00
|
|
|
|
|
|
|
|
@code {
|
|
|
|
|
[Parameter] public Guid Id { get; set; }
|
|
|
|
|
[Parameter] public string Content { get; set; }
|
2025-12-30 18:08:20 -06:00
|
|
|
[Parameter] public DateTimeOffset SentOn { get; set; }
|
2025-08-24 19:34:14 -05:00
|
|
|
}
|