identificationOfCultivatedL.../OpenAuth.Identity/Quickstart/Home/ErrorViewModel.cs

22 lines
531 B
C#
Raw Permalink Normal View History

2026-02-04 10:30:49 +08:00
// 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.
using IdentityServer4.Models;
namespace OpenAuth.IdentityServer.Quickstart.Home
{
public class ErrorViewModel
{
public ErrorViewModel()
{
}
public ErrorViewModel(string error)
{
Error = new ErrorMessage { Error = error };
}
public ErrorMessage Error { get; set; }
}
}