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.
 
 
 
 
 

35 lines
837 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Swift.API.Common.Amend
{
public class AmendTransaction
{
public string ProcessId { get; set; }
public string UserName { get; set; }
public string ProviderId { get; set; }
public string SessionId { get; set; }
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
}
}