Pipeline
This commit is contained in:
@ -1,16 +1,22 @@
|
||||
using Microsoft.AspNetCore.Mvc.RazorPages;
|
||||
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) =>
|
||||
public NotificationModel(ILogger<NotificationModel> logger, AppSettings appSettings)
|
||||
{
|
||||
_Logger = logger;
|
||||
AppSettings = appSettings;
|
||||
}
|
||||
|
||||
public void OnGet()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user