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.
 
 
 

39 lines
1.0 KiB

namespace Common.Model
{
public class TranHistoryResponse
{
private string _paidDate = null;
public string User { 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 SendDate { get; set; }
public string PaidDate
{
get
{
return _paidDate;
}
set
{
_paidDate = value;
}
}
public string PayoutAgent { get; set; }
public string DisplayActions { get; set; }
public string ColorIcon { get; set; }
public string ColorCode { get; set; }
public string TextCode { get; set; }
public string ReceiverId { get; set; }
}
}