23 lines
1.0 KiB
C#
23 lines
1.0 KiB
C#
using System.Collections.Generic;
|
|
using _0_Framework.Domain.CustomizeCheckoutShared.Enums;
|
|
using _0_Framework.Domain.CustomizeCheckoutShared.ValueObjects;
|
|
|
|
namespace CompanyManagment.App.Contracts.CustomizeWorkshopSettings;
|
|
|
|
public class CustomizeWorkshopGroupSettingsViewModel
|
|
{
|
|
public long Id { get; set; }
|
|
public double Salary { get; set; }
|
|
public string SalaryStr { get; set; }
|
|
public string GroupName { get; set; }
|
|
public bool MainGroup { get; set; }
|
|
public List<CustomizeWorkshopShiftViewModel> RollCallWorkshopShifts { get; set; }
|
|
public List<CustomizeWorkshopEmployeeSettingsViewModel> RollCallWorkshopEmployeesSettings { get; set; }
|
|
public List<CustomizeRotatingShiftsViewModel> CustomizeRotatingShiftsViewModels { get; set; }
|
|
public WorkshopShiftStatus WorkshopShiftStatus { get; set; }
|
|
public IrregularShift IrregularShift { get; set; }
|
|
public BreakTime BreakTime { get; set; }
|
|
public FridayWork FridayWork { get; set; }
|
|
public HolidayWork HolidayWork { get; set; }
|
|
public int LeavePermitted { get; set; }
|
|
} |