18 lines
398 B
C#
18 lines
398 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Runtime.Serialization;
|
|
using System.Text;
|
|
|
|
namespace Taloyhtio.GeneralSSO.Server.CodeFiles.Infrastructure.WCF
|
|
{
|
|
[DataContract]
|
|
public class JsonErrorDetails
|
|
{
|
|
[DataMember]
|
|
public string Message { get; set; }
|
|
[DataMember]
|
|
public string ExceptionType { get; set; }
|
|
}
|
|
}
|