.kanbn
.vscode
Server
ApiControllers
HostedService
Hubs
Models
Pages
Shared
Error.cshtml
Error.cshtml.cs
Notification.cshtml
Notification.cshtml.cs
_ViewImports.cshtml
_ViewStart.cshtml
Properties
Services
wwwroot
Barcode.Host.Server.csproj
Program.cs
appsettings.Development.json
appsettings.json
Server.Tests
Shared
.editorconfig
.gitignore
.prettierignore
Barcode-Host.sln
Barcode-Host.yml
package-lock.json
package.json
19 lines
342 B
C#
19 lines
342 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; }
|
|
|
|
public NotificationModel(AppSettings appSettings) =>
|
|
AppSettings = appSettings;
|
|
|
|
public void OnGet()
|
|
{
|
|
}
|
|
|
|
}
|