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

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
}
}