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.

33 lines
815 B

  1. using Common.Models.RequestResponse;
  2. using Common.Models.TxnModel;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.ComponentModel.DataAnnotations;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. namespace Common.Models.TxnAmendModel
  10. {
  11. public class AmendTransaction : CommonRequest
  12. {
  13. public string TfPinno { get; set; }
  14. public string Reason { get; set; }
  15. #region SenderInformation
  16. public TxnAmendSender AmendSender { get; set; }
  17. #endregion SenderInformation
  18. #region ReceiverInformation
  19. public TxnAmendReceiver AmendReceiver { get; set; }
  20. #endregion ReceiverInformation
  21. #region AgentInformation
  22. public TxnAmendAgnet AmendAgent { get; set; }
  23. #endregion AgentInformation
  24. }
  25. }