23 lines
469 B
C#
23 lines
469 B
C#
using Barcode.Host.Server.Models;
|
|
using Microsoft.AspNetCore.Mvc.RazorPages;
|
|
|
|
namespace Barcode.Host.Server.Pages;
|
|
|
|
public class NotificationModel : PageModel
|
|
{
|
|
|
|
public AppSettings AppSettings { get; }
|
|
private readonly ILogger<NotificationModel> _Logger;
|
|
|
|
public NotificationModel(ILogger<NotificationModel> logger, AppSettings appSettings)
|
|
{
|
|
_Logger = logger;
|
|
AppSettings = appSettings;
|
|
}
|
|
|
|
public void OnGet()
|
|
{
|
|
}
|
|
|
|
}
|