18 lines
553 B
C#
18 lines
553 B
C#
using System;
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
namespace Company.Application.Contracts.AuthorizedBankDetails;
|
|
|
|
public class AuthorizedBankDetailsViewModel
|
|
{
|
|
public string NationalIdentifier { get; set; }
|
|
|
|
public long Id { get; set; }
|
|
public string CustomerType { 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> Owners { get; set; }
|
|
} |