using Common.Models.RequestResponse; using Common.Models.TxnModel; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Common.Models.TxnAmendModel { public class AmendTransaction : CommonRequest { public string TfPinno { get; set; } public string Reason { get; set; } #region SenderInformation public TxnAmendSender AmendSender { get; set; } #endregion SenderInformation #region ReceiverInformation public TxnAmendReceiver AmendReceiver { get; set; } #endregion ReceiverInformation #region AgentInformation public TxnAmendAgnet AmendAgent { get; set; } #endregion AgentInformation } }