Files
Backend-Api/CompanyManagment.App.Contracts/EmployeeBankInformation/EmployeeInformationViewModel.cs
2025-01-20 17:31:03 +03:30

21 lines
491 B
C#

namespace CompanyManagment.App.Contracts.EmployeeBankInformation;
public class EmployeeInformationViewModel
{
public long EmployeeId { get; set; }
public string EmployeeName { get; set; }
public long WorkshopId { get; set; }
//نام بانک
public string BankName { get; set; }
//شماره حساب
public string BankAccountNumber { get; set; }
//شماره کارت
public string CardNumber { get; set; }
//شماره شبا
public string ShebaNumber { get; set; }
}