13 lines
367 B
C#
13 lines
367 B
C#
namespace Company.Application.Contracts.AuthorizedBankDetails
|
|
{
|
|
public class AuthorizedBankDetailsSearchModel
|
|
{
|
|
public string CardNumber { get; set; }
|
|
public string AccountNumber { get; set; }
|
|
public string IBan { get; set; }
|
|
public string BankName { get; set; }
|
|
public string NationalIdentifier { get; set; }
|
|
}
|
|
}
|
|
|