source: src/FinkiChattery/FinkiChattery.Identity/Quickstart/Home/ErrorViewModel.cs@ e6a6d9a

dev
Last change on this file since e6a6d9a was e6a6d9a, checked in by Стојков Марко <mst@…>, 3 years ago

Initialized FinkiChattery project

  • Property mode set to 100644
File size: 521 bytes
Line 
1// Copyright (c) Brock Allen & Dominick Baier. All rights reserved.
2// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information.
3
4
5using IdentityServer4.Models;
6
7namespace IdentityServerHost.Quickstart.UI
8{
9 public class ErrorViewModel
10 {
11 public ErrorViewModel()
12 {
13 }
14
15 public ErrorViewModel(string error)
16 {
17 Error = new ErrorMessage { Error = error };
18 }
19
20 public ErrorMessage Error { get; set; }
21 }
22}
Note: See TracBrowser for help on using the repository browser.