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.
 
 
 

25 lines
783 B

namespace Common.Model
{
public class WalletStatementResponse
{
// public int RowId { get; set; }
public string TransactionDate { get; set; }
public string Particular { get; set; }
public string TranId { get; set; }
public string ControlNo { get; set; }
public string PayoutAmt { get; set; }
public string PCurr { get; set; }
public string CollAmt { get; set; }
public string CollCurr { get; set; }
public string PayStatus { get; set; }
public string PayoutMode { get; set; }
public string ReceiverName { get; set; }
public string PayoutCountry { get; set; }
public string ColorCode { get; set; }
public string TextCode { get; set; }
}
}