mirror of
https://git.teknik.io/Teknikode/Teknik.git
synced 2023-08-02 14:16:22 +02:00
21 lines
401 B
C#
21 lines
401 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Teknik.IdentityServer.ViewModels
|
|
{
|
|
public class ViewModelBase
|
|
{
|
|
public bool Error { get; set; }
|
|
|
|
public string ErrorMessage { get; set; }
|
|
|
|
public ViewModelBase()
|
|
{
|
|
Error = false;
|
|
ErrorMessage = string.Empty;
|
|
}
|
|
}
|
|
}
|