mirror of
https://github.com/ditkrg/AuthorizationServerDemos.git
synced 2026-01-22 22:47:02 +00:00
25 lines
519 B
C#
25 lines
519 B
C#
using Microsoft.AspNetCore.Mvc;
|
|
using Microsoft.AspNetCore.Mvc.RazorPages;
|
|
using Microsoft.Extensions.Logging;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace OidcSamples.TaxApp.Pages
|
|
{
|
|
public class PrivacyModel : PageModel
|
|
{
|
|
private readonly ILogger<PrivacyModel> _logger;
|
|
|
|
public PrivacyModel(ILogger<PrivacyModel> logger)
|
|
{
|
|
_logger = logger;
|
|
}
|
|
|
|
public void OnGet()
|
|
{
|
|
}
|
|
}
|
|
}
|