21 lines
491 B
C#
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; }
|
|
|
|
} |