using System; using System.Collections.Generic; using _0_Framework.Domain.CustomizeCheckoutShared.Base; 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 GroupName { get; set; } public bool MainGroup { get; set; } public List RollCallWorkshopShifts { get; set; } public List RollCallWorkshopEmployeesSettings { get; set; } public List 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 List OffDayOfWeeks { get; set; } }