17 lines
341 B
C#
17 lines
341 B
C#
// Copyright (c) Duende Software. All rights reserved.
|
|
// See LICENSE in the project root for license information.
|
|
|
|
using Microsoft.AspNetCore.Authorization;
|
|
using Microsoft.AspNetCore.Mvc.RazorPages;
|
|
|
|
namespace Yavsc.Pages.Device;
|
|
|
|
[SecurityHeaders]
|
|
[Authorize]
|
|
public class SuccessModel : PageModel
|
|
{
|
|
public void OnGet()
|
|
{
|
|
}
|
|
}
|