Files
Backend-Api/CompanyManagment.App.Contracts/EmployeeBankInformation/EmployeeBankInformationViewModel.cs

18 lines
589 B
C#

using System.Security.AccessControl;
namespace CompanyManagment.App.Contracts.EmployeeBankInformation;
public class EmployeeBankInformationViewModel
{
public long Id { get; set; }
public long EmployeeId { get; set; }
public string EmployeeName { get; set; }
public string BankName { get; set; }
public string BankLogoPath { get; set; }
public string CardNumber { get; set; }
public string ShebaNumber { get; set; }
public string BankAccountNumber { get; set; }
public bool IsDefault { get; set; }
public long BankId { get; set; }
public long BankLogoMediaId { get; set; }
}