base namespace to nuget_host
This commit is contained in:
parent
1b2d850522
commit
a2f26f1e8e
31 changed files with 31 additions and 30 deletions
|
|
@ -4,7 +4,7 @@
|
|||
|
||||
using System;
|
||||
|
||||
namespace IdentityServerHost.Quickstart.UI
|
||||
namespace nuget_host.Models
|
||||
{
|
||||
public class AccountOptions
|
||||
{
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information.
|
||||
|
||||
|
||||
namespace IdentityServerHost.Quickstart.UI
|
||||
namespace nuget_host.Models
|
||||
{
|
||||
public class ExternalProvider
|
||||
{
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information.
|
||||
|
||||
|
||||
namespace IdentityServerHost.Quickstart.UI
|
||||
namespace nuget_host.Models
|
||||
{
|
||||
public class LoggedOutViewModel
|
||||
{
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace IdentityServerHost.Quickstart.UI
|
||||
namespace nuget_host.Models
|
||||
{
|
||||
public class LoginInputModel
|
||||
{
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ using System;
|
|||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
|
||||
namespace IdentityServerHost.Quickstart.UI
|
||||
namespace nuget_host.Models
|
||||
{
|
||||
public class LoginViewModel : LoginInputModel
|
||||
{
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information.
|
||||
|
||||
|
||||
namespace IdentityServerHost.Quickstart.UI
|
||||
namespace nuget_host.Models
|
||||
{
|
||||
public class LogoutInputModel
|
||||
{
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information.
|
||||
|
||||
|
||||
namespace IdentityServerHost.Quickstart.UI
|
||||
namespace nuget_host.Models
|
||||
{
|
||||
public class LogoutViewModel : LogoutInputModel
|
||||
{
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
|
||||
|
||||
namespace IdentityServerHost.Quickstart.UI
|
||||
namespace nuget_host.Models
|
||||
{
|
||||
public class RedirectViewModel
|
||||
{
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
using System.Collections.Generic;
|
||||
using IdentityServer4.Models;
|
||||
|
||||
namespace IdentityServerHost.Quickstart.UI
|
||||
namespace nuget_host.Models
|
||||
{
|
||||
public class ConsentInputModel
|
||||
{
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information.
|
||||
|
||||
|
||||
namespace IdentityServerHost.Quickstart.UI
|
||||
namespace nuget_host.Models
|
||||
{
|
||||
public class ConsentOptions
|
||||
{
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace IdentityServerHost.Quickstart.UI
|
||||
namespace nuget_host.Models
|
||||
{
|
||||
public class ConsentViewModel : ConsentInputModel
|
||||
{
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
using System.Collections.Generic;
|
||||
using IdentityServer4.Models;
|
||||
|
||||
namespace IdentityServerHost.Quickstart.UI
|
||||
namespace nuget_host.Models
|
||||
{
|
||||
public class ParsedScopes
|
||||
{
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
|
||||
using IdentityServer4.Models;
|
||||
|
||||
namespace IdentityServerHost.Quickstart.UI
|
||||
namespace nuget_host.Models
|
||||
{
|
||||
public class ProcessConsentResult
|
||||
{
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information.
|
||||
|
||||
|
||||
namespace IdentityServerHost.Quickstart.UI
|
||||
namespace nuget_host.Models
|
||||
{
|
||||
public class ScopeViewModel
|
||||
{
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
using IdentityServer4.Models;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace IdentityServerHost.Quickstart.UI
|
||||
namespace nuget_host.Models
|
||||
{
|
||||
public class ValidatedResources
|
||||
{
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information.
|
||||
|
||||
|
||||
namespace IdentityServerHost.Quickstart.UI
|
||||
namespace nuget_host.Models
|
||||
{
|
||||
|
||||
public class DeviceAuthorizationInputModel : ConsentInputModel
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information.
|
||||
|
||||
|
||||
namespace IdentityServerHost.Quickstart.UI
|
||||
namespace nuget_host.Models
|
||||
{
|
||||
public class DeviceAuthorizationViewModel : ConsentViewModel
|
||||
{
|
||||
|
|
|
|||
|
|
@ -19,7 +19,7 @@ using Microsoft.Extensions.Logging;
|
|||
using Microsoft.Extensions.Options;
|
||||
using nuget_host.OAuth;
|
||||
|
||||
namespace IdentityServerHost.Quickstart.UI
|
||||
namespace nuget_host.Models
|
||||
{
|
||||
[Authorize]
|
||||
[SecurityHeaders]
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ using Newtonsoft.Json;
|
|||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace IdentityServerHost.Quickstart.UI
|
||||
namespace nuget_host.Models
|
||||
{
|
||||
public class DiagnosticsViewModel
|
||||
{
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace IdentityServerHost.Quickstart.UI
|
||||
namespace nuget_host.Models
|
||||
{
|
||||
public class GrantsViewModel
|
||||
{
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
using Microsoft.AspNetCore.Mvc;
|
||||
using Microsoft.AspNetCore.Mvc.Filters;
|
||||
|
||||
namespace IdentityServerHost.Quickstart.UI
|
||||
namespace nuget_host.Models
|
||||
{
|
||||
public class SecurityHeadersAttribute : ActionFilterAttribute
|
||||
{
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ using System.Security.Claims;
|
|||
using IdentityServer4;
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace IdentityServerHost.Quickstart.UI
|
||||
namespace nuget_host.Models
|
||||
{
|
||||
public class TestUsers
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue