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.
 
 

40 lines
1.5 KiB

using System.ComponentModel.DataAnnotations;
namespace Common.Models.TxnModel
{
public class TxnTransaction
{
public string TxnDate { get; set; }
public string JMEControlNo { get; set; }
public string PurposeOfRemittanceName { get; set; }
public string CollectionMode { get; set; }
public int DeliveryMethodId { get; set; }
public string DeliveryMethod { get; set; }
public string PCurr { get; set; }
public string CollCurr { get; set; }
public decimal CAmt { get; set; }
public decimal PAmt { get; set; }
public decimal TAmt { get; set; }
public decimal ServiceCharge { get; set; }
public decimal Discount { get; set; }
public decimal ExRate { get; set; }
public decimal Rate { get; set; }
public string PComm { get; set; }
public decimal SettlementDollarRate { get; set; }
public string CalBy { get; set; }
public string Introducer { get; set; }
[MaxLength(1)]
public string IsManualSc { get; set; }
public decimal ManualSc { get; set; }
public string RLocation { get; set; }
public string RLocationName { get; set; }
public string TpRefNo { get; set; }
public string TpTranId { get; set; }
public int PayOutPartner { get; set; }
public string PaymentType { get; set; }
public string PayoutMsg { get; set; }
public string FOREX_SESSION_ID { get; set; }
}
}