31 lines
737 B
C#
31 lines
737 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Company.Application.Contracts.AuthorizedBankDetails
|
|
{
|
|
public class CreateAuthorizedBankDetails
|
|
{
|
|
public string CardNumber { get; set; }
|
|
|
|
public string AccountNumber { get; set; }
|
|
|
|
public string IBan { get; set; }
|
|
|
|
public string BankName { get; set; }
|
|
|
|
public List<CreateAuthorizedBankDetailsOwner> OwnersList { get; set; }
|
|
}
|
|
|
|
public class CreateAuthorizedBankDetailsOwner
|
|
{
|
|
public string FName { get; set; }
|
|
|
|
public string LName { get; set; }
|
|
|
|
public string NationalIdentifier { get; set; }
|
|
|
|
public string CustomerType { get; set; }
|
|
}
|
|
}
|