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.
 
 
 

14 lines
443 B

namespace Common.Model
{
public class TrackTransactionResponse
{
public string PayStatus { get; set; }
public string Bank { get; set; }
public string BankBranch { get; set; }
public string AccountNo { get; set; }
public string Receiver { get; set; }
public string SendDate { get; set; }
public string CollAmt { get; set; }
public string PayoutAmt { get; set; }
}
}