You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

23 lines
649 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Common.Model
{
public class TransactionStatusCallbackResponse
{
public bool Success { get; set; }
public string StatusCode { get; set; }
public object MessageType { get; set; }
public string StatusDescription { get; set; }
public StatusData Data { get; set; }
}
public class StatusData
{
public string TTReferenceNo { get; set; }
public string AcknowledgeStatus { get; set; }
public string AcknowledgeDescription { get; set; }
}
}