25 lines
987 B
C#
25 lines
987 B
C#
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using _0_Framework.Domain.CustomizeCheckoutShared.Enums;
|
|
using _0_Framework.Domain.CustomizeCheckoutShared.ValueObjects;
|
|
|
|
namespace CompanyManagment.App.Contracts.CustomizeWorkshopSettings;
|
|
|
|
public class CreateCustomizeWorkshopGroupSettings
|
|
{
|
|
|
|
public string Name { get; set; }
|
|
public string Salary { get; set; }
|
|
public long CustomizeWorkshopSettingId { get; set; }
|
|
public IEnumerable<CustomizeWorkshopShiftViewModel> ShiftViewModel { get; set; }
|
|
public WorkshopShiftStatus WorkshopShiftStatus { get; set; }
|
|
public IrregularShift IrregularShift { get; set; }
|
|
public BreakTime BreakTime { get; set; }
|
|
public int LeavePermittedDays { get; set; }
|
|
//public FridayWork FridayWork { get; set; }
|
|
public HolidayWork HolidayWork { get; set; }
|
|
public List<DayOfWeek> OffDayOfWeeks { get; set; }
|
|
public ICollection<CustomizeRotatingShiftsViewModel> CustomizeRotatingShiftsViewModels { get; set; }
|
|
|
|
} |