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.
 
 
 
 
 

26 lines
739 B

using System.Collections.Generic;
namespace Common.Model.ReferralReports
{
public class ViewStatementModel
{
public string fromDate { get; set; }
public string toDate { get; set; }
public string referralCode { get; set; }
}
public class ViewStatementList
{
public List<ViewStatementResultModel> StatementList { get; set; }
}
public class ViewStatementResultModel
{
public string TranDate { get; set; }
public string SenderName { get; set; }
public string JMENumber { get; set; }
public string Amount { get; set; }
public string AccountNo { get; set; }
public string TranType { get; set; }
}
}