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

  1. namespace BankOfCeylon.Model
  2. {
  3. public class SendMoneyModel
  4. {
  5. public string CUSPIN { get; set; }
  6. public string SENDERACCOUNTNO { get; set; }
  7. public string CURRENCY { get; set; }
  8. public string REMITTENCETYPE { get; set; }
  9. public string SENDERNAME { get; set; }
  10. public string BENEFICIARYNAME { get; set; }
  11. public string BENEFICIARYADD { get; set; }
  12. public string BENEFICIARYPHONE { get; set; }
  13. public string BENEFICIARYID { get; set; }
  14. public string BANKACCTNO { get; set; }
  15. public string BANKNAME { get; set; }
  16. public string BANKADDRESS { get; set; }
  17. public string SENDERPHONE { get; set; }
  18. public string SENDRESINFO { get; set; }
  19. public string TRANSACTIONREF { get; set; }
  20. public string SMSALERT { get; set; }
  21. public double AMOUNT { get; set; }
  22. public string CHARGE { get; set; }
  23. }
  24. }