15 lines
549 B
C#
15 lines
549 B
C#
using System.Collections.Generic;
|
|
|
|
namespace CompanyManagment.App.Contracts.EmployeeBankInformation;
|
|
|
|
public class GroupedEmployeeBankInformationViewModel
|
|
{
|
|
public long EmployeeId { get; set; }
|
|
public long WorkshopId { get; set; }
|
|
public string EmployeeName { get; set; }
|
|
public string PersonnelCode { get; set; }
|
|
public int TotalBankAccountsCount { get; set; }
|
|
public List<EmployeeBankInformationViewModel> BankInformation { get; set; }
|
|
public List<string> BankPicturesList { get; set; }
|
|
public List<string> BankNamesList { get; set; }
|
|
} |