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.
 
 
 
 
 

41 lines
1.2 KiB

namespace CustomerOnlineRemit.Common.Model.Customer
{
public class CustomerModel
{
public string? Id { get; set; }
public string? Name { get; set; }
public string? Country { get; set; }
public string? TransactionType { get; set; }
}
public class ReceiverModel
{
public string? Id { get; set; }
public string? Name { get; set; }
public string? Country { get; set; }
public string? Mobile { get; set; }
public string? TransactionType { get; set; }
}
public class CustomerReceiverModel : CommonResponse
{
public List<ReceiverModel> ReceiverModel { get; set; }
}
public class CustomerTransactionList : CommonResponse
{
public List<CustomerTransaction> CustomerTransaction { get; set; }
}
public class CustomerTransaction
{
public string? Id { get; set; }
public string? TransactionMonth { get; set; }
public string? TransactionDay { get; set; }
public string? PaymentMethod { get; set; }
public string? PBankName { get; set; }
public string? Amount { get; set; }
public string? Status { get; set; }
public string? PCurrency { get; set; }
}
}