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.
 
 
 

12 lines
361 B

namespace Common.Model
{
public class WalletStatementResponse
{
public int RowId { get; set; }
public string TransactionDate { get; set; }
public string Particular { get; set; }
public string WalletIn { get; set; }
public string WalletOut { get; set; }
public string ClosingAmount { get; set; }
}
}