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.
 
 

24 lines
942 B

namespace BankOfCeylon.Model
{
public class SendMoneyModel
{
public string CUSPIN { get; set; }
public string SENDERACCOUNTNO { get; set; }
public string CURRENCY { get; set; }
public string REMITTENCETYPE { get; set; }
public string SENDERNAME { get; set; }
public string BENEFICIARYNAME { get; set; }
public string BENEFICIARYADD { get; set; }
public string BENEFICIARYPHONE { get; set; }
public string BENEFICIARYID { get; set; }
public string BANKACCTNO { get; set; }
public string BANKNAME { get; set; }
public string BANKADDRESS { get; set; }
public string SENDERPHONE { get; set; }
public string SENDRESINFO { get; set; }
public string TRANSACTIONREF { get; set; }
public string SMSALERT { get; set; }
public double AMOUNT { get; set; }
public string CHARGE { get; set; }
}
}