9 lines
201 B
C#
9 lines
201 B
C#
namespace PARR.EsppApi.Models
|
|
{
|
|
public class EsppResponse
|
|
{
|
|
public string Message { get; set; } = string.Empty;
|
|
public string ErrorCode { get; set; } = string.Empty;
|
|
}
|
|
}
|