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.
 
 
 

30 lines
1.0 KiB

using System.ComponentModel.DataAnnotations;
namespace Common.Model
{
public class AccountValidationRequest
{
public string IdType { get; set; }
public string IdNumber { get; set; }
public string CustomerFirstName { get; set; }
public string CustomerLastName { get; set; }
public string ReceiverFirstName { get; set; }
public string ReceiverLastName { get; set; }
public int ReceiverCountryId { get; set; }
public string Country { get; set; }
public string AccountType { get; set; }
public string IssuerCode { get; set; }
[Required]
public string AccountNo { get; set; }
public string Amount { get; set; }
public string BankCode { get; set; }
public string PayoutPartner { get; set; }
public int DeliveryMethodId { get; set; }
public string ProcessId { get; set; }
public int BankId { get; set; }
public string UserName { get; set; }
public string ReceiverName { get; set; }
}
}