15 lines
318 B
C#
15 lines
318 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace PARR.EsppApi.Models
|
|
{
|
|
public class EsppResponse
|
|
{
|
|
public string Message { get; set; } = string.Empty;
|
|
public string ErrorCode { get; set; } = string.Empty;
|
|
}
|
|
}
|