mirror of
https://github.com/Shchoholiev/shopping-assistant-web-client.git
synced 2025-04-03 16:19:48 +00:00
15 lines
296 B
C#
15 lines
296 B
C#
using Microsoft.AspNetCore.Components;
|
|
|
|
namespace ShoppingAssistantWebClient.Web.Pages;
|
|
|
|
public partial class Chat : ComponentBase
|
|
{
|
|
[Inject]
|
|
public ILogger<Chat> Logger { get; set; }
|
|
|
|
protected override async Task OnInitializedAsync()
|
|
{
|
|
// Get data from Back-end
|
|
}
|
|
}
|