Gregory Rudolph
4 years ago
3 changed files with 32 additions and 0 deletions
@ -0,0 +1,5 @@ |
|||||||
|
@page |
||||||
|
@model SettingsModel |
||||||
|
@{ |
||||||
|
ViewData["Title"] = "Settings"; |
||||||
|
} |
@ -0,0 +1,24 @@ |
|||||||
|
using System; |
||||||
|
using System.Collections.Generic; |
||||||
|
using System.Linq; |
||||||
|
using System.Threading.Tasks; |
||||||
|
using Microsoft.AspNetCore.Mvc; |
||||||
|
using Microsoft.AspNetCore.Mvc.RazorPages; |
||||||
|
using Microsoft.Extensions.Logging; |
||||||
|
|
||||||
|
namespace StateJobsNYSubmit.Pages |
||||||
|
{ |
||||||
|
public class SettingsModel : PageModel |
||||||
|
{ |
||||||
|
private readonly ILogger<PrivacyModel> _logger; |
||||||
|
|
||||||
|
public SettingsModel(ILogger<PrivacyModel> logger) |
||||||
|
{ |
||||||
|
_logger = logger; |
||||||
|
} |
||||||
|
|
||||||
|
public void OnGet() |
||||||
|
{ |
||||||
|
} |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue