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.
 
 
 

13 lines
396 B

namespace Common.Model.AutoRefund
{
public class CustomerInfo
{
public string CustomerId { get; set; }
public string Email { get; set; }
public string Mobile { get; set; }
public string ObpId { get; set; }
public string BankCode { get; set; }
public string BankName { get; set; }
public string BankAccountNo { get; set; }
}
}