Inits the workflow configuration
This commit is contained in:
20
src/Yavsc/Pages/Home/Error/ViewModel.cs
Normal file
20
src/Yavsc/Pages/Home/Error/ViewModel.cs
Normal file
@ -0,0 +1,20 @@
|
||||
// Copyright (c) Duende Software. All rights reserved.
|
||||
// See LICENSE in the project root for license information.
|
||||
|
||||
using Duende.IdentityServer.Models;
|
||||
|
||||
namespace Yavsc.Pages.Error;
|
||||
|
||||
public class ViewModel
|
||||
{
|
||||
public ViewModel()
|
||||
{
|
||||
}
|
||||
|
||||
public ViewModel(string error)
|
||||
{
|
||||
Error = new ErrorMessage { Error = error };
|
||||
}
|
||||
|
||||
public ErrorMessage? Error { get; set; }
|
||||
}
|
Reference in New Issue
Block a user