You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
606 B
19 lines
606 B
// Copyright (c) Brock Allen & Dominick Baier. All rights reserved.
|
|
// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information.
|
|
|
|
|
|
namespace IdentityServer4.Quickstart.UI
|
|
{
|
|
public class ProcessConsentResult
|
|
{
|
|
public bool IsRedirect => RedirectUri != null;
|
|
public string RedirectUri { get; set; }
|
|
|
|
public bool ShowView => ViewModel != null;
|
|
public ConsentViewModel ViewModel { get; set; }
|
|
|
|
public bool HasValidationError => ValidationError != null;
|
|
public string ValidationError { get; set; }
|
|
}
|
|
}
|