barcode-host/Server/Pages/Notification.cshtml.cs
2023-06-08 13:36:25 -07:00

17 lines
321 B
C#

using Microsoft.AspNetCore.Mvc.RazorPages;
namespace Barcode.Host.Server.Pages;
public class NotificationModel : PageModel
{
private readonly ILogger<NotificationModel> _Logger;
public NotificationModel(ILogger<NotificationModel> logger) =>
_Logger = logger;
public void OnGet()
{
}
}