Files
Backend-Api/CompanyManagment.App.Contracts/LeftWorkInsurance/LeftworkInsuranceDividedList.cs
2024-07-05 21:36:15 +03:30

26 lines
950 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using CompanyManagment.App.Contracts.PersonnleCode;
using CompanyManagment.App.Contracts.Workshop;
using Microsoft.AspNetCore.Mvc.Rendering;
namespace CompanyManagment.App.Contracts.LeftWorkInsurance;
public class LeftworkInsuranceDividedList
{
public long EmployeeId { get; set; }
public string EmployeeName { get; set; }
public SelectList Workshops { get; set; }
public List<LeftWorkInsuranceGroup> LeftWorkInsuranceGroups { get; set; }
public List<PersonnelCodeViewModel> PersonnelCode { get; set; }
public bool IsDelete { get; set; }
public List<int> PermissionIds { get; set; }
public long WorkshopId { get; set; }
public string WorkshopName { get; set; }
public bool AddBonusesPay { get; set; }
public bool AddLeavePay { get; set; }
public bool AddYearsPay { get; set; }
}