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.
 
 
 
 
 

23 lines
693 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Swift.DAL.Model
{
public class StatementModel
{
public string tran_particular { get; set; }
public string fcy_Curr { get; set; }
public string tran_amt { get; set; }
public string usd_amt { get; set; }
public string ref_num { get; set; }
public string tran_date { get; set; }
public string acc_num { get; set; }
public string tran_type { get; set; }
public string part_tran_type { get; set; }
public string dt { get; set; }
public bool hasRight { get; set; }
}
}