Files
Backend-Api/CompanyManagment.App.Contracts/EmployeeBankInformation/EmployeeBankInformationViewModelForExcel.cs
2025-02-09 20:36:53 +03:30

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; }
}