shopping-assistant-web-client/ShoppingAssistantWebClient.Web/Pages/Chat.cshtml.cs
2023-10-15 18:40:37 +00:00

22 lines
551 B
C#

using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.RazorPages;
using ShoppingAssistantWebClient.Web.Network;
namespace ShoppingAssistantWebClient.Web.Pages;
public class ChatModel : PageModel
{
private readonly ILogger<ChatModel> _logger;
private readonly AuthenticationService _authenticationService;
public ChatModel(ILogger<ChatModel> logger, AuthenticationService authenticationService)
{
_authenticationService = authenticationService;
_logger = logger;
}
public void OnGet()
{
}
}