17 lines
547 B
C#
17 lines
547 B
C#
using System.Collections.Generic;
|
|
|
|
namespace CompanyManagment.App.Contracts.EmployeeBankInformation;
|
|
|
|
public class EmployeeBankInformationViewModelForExcel
|
|
{
|
|
public string EmployeeName { get; set; }
|
|
public List<BankInformationDtoForExcel> BankInformationList { get; set; }
|
|
}
|
|
public class BankInformationDtoForExcel
|
|
{
|
|
public string BankName { get; set; }
|
|
public string CardNumber { get; set; }
|
|
public string ShebaNumber { get; set; }
|
|
public string BankAccountNumber { get; set; }
|
|
public bool IsDefault { get; set; }
|
|
} |