Files
Backend-Api/CompanyManagment.App.Contracts/InsuranceList/MainEmployeeDetailsViewModel.cs
2025-02-01 18:14:58 +03:30

16 lines
494 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CompanyManagment.App.Contracts.InsuranceList;
public class MainEmployeeDetailsViewModel
{
public List<CompanyManagment.App.Contracts.InsuranceList.EmployeeDetailsForInsuranceListViewModel> EmployeeDetailsForInsuranceList { get; set; }
public bool IsExist { get; set; }
public bool IsBlock { get; set; }
public double MaritalStatus { get; set; }
}