14 lines
262 B
C#
14 lines
262 B
C#
|
using Newtonsoft.Json;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace PCUT.Entities.ApiResponse
|
|||
|
{
|
|||
|
public class MessageResponse
|
|||
|
{
|
|||
|
[JsonProperty("message")]
|
|||
|
public string ErrorMessage { get; set; }
|
|||
|
}
|
|||
|
}
|