Files
Backend-Api/CompanyManagment.App.Contracts/CustomizeWorkshopSettings/CreateCustomizeWorkshopGroupSettings.cs

20 lines
809 B
C#

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; }
}