OpenInsightApplicationProgrammingInterface

This commit is contained in:
2023-07-27 16:22:23 -07:00
parent 9717fcb3bf
commit f54b93c0d6
7 changed files with 107 additions and 49 deletions

View File

@ -7,13 +7,9 @@ public class NotificationModel : PageModel
{
public AppSettings AppSettings { get; }
private readonly ILogger<NotificationModel> _Logger;
public NotificationModel(ILogger<NotificationModel> logger, AppSettings appSettings)
{
_Logger = logger;
public NotificationModel(AppSettings appSettings) =>
AppSettings = appSettings;
}
public void OnGet()
{