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.
 
 

24 lines
792 B

using Common.Models.RequestResponse;
using System.ComponentModel.DataAnnotations;
namespace Common.Models.Bank_Account
{
public class AccountValidationRequest : CommonRequest
{
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 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; }
}
}