20 lines
748 B
C#
20 lines
748 B
C#
using _0_Framework.Domain.CustomizeCheckoutShared.Enums;
|
|
using CompanyManagment.App.Contracts.CustomizeWorkshopSettings.ValueObjectsViewModel;
|
|
using System.Collections.Generic;
|
|
using System.Security.AccessControl;
|
|
using _0_Framework.Domain.CustomizeCheckoutShared.ValueObjects;
|
|
|
|
namespace CompanyManagment.App.Contracts.CustomizeWorkshopSettings;
|
|
|
|
public class CreateCustomizeEmployeeSettings
|
|
{
|
|
|
|
public List<long> EmployeeIds { get; set; }
|
|
public long GroupId { get; set; }
|
|
public long WorkshopSettingId { get; set; }
|
|
public long WorkshopId { get; set; }
|
|
|
|
public WorkshopShiftStatus WorkshopShiftStatus { get; set; }
|
|
public IrregularShift IrregularShift { get; set; }
|
|
public int LeavePermittedDays { get; set; }
|
|
} |