29 lines
770 B
C#
29 lines
770 B
C#
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Company.Application.Contracts.AuthorizedBankDetails
|
|
{
|
|
public class EditAuthorizedBankDetails
|
|
{
|
|
public long Id { get; set; }
|
|
|
|
public string CardNumber { get; set; }
|
|
|
|
public string AccountNumber { get; set; }
|
|
|
|
public string IBan { get; set; }
|
|
|
|
public string BankName { get; set; }
|
|
|
|
public List<AuthorizedBankDetailsOwnerViewModel> OwnersList { get; set; }
|
|
}
|
|
|
|
public class AuthorizedBankDetailsOwnerViewModel
|
|
{
|
|
public string FName { get; set; }
|
|
public string LName { get; set; }
|
|
public string NationalIdentifier { get; set; }
|
|
public string CustomerType { get; set; }
|
|
}
|
|
}
|