39 lines
1.1 KiB
C#
39 lines
1.1 KiB
C#
using System;
|
|
using _0_Framework.Domain.CustomizeCheckoutShared.Enums;
|
|
using CompanyManagment.App.Contracts.CustomizeWorkshopSettings.ValueObjectsViewModel;
|
|
using System.Collections.Generic;
|
|
using _0_Framework.Domain.CustomizeCheckoutShared.Enums;
|
|
using _0_Framework.Domain.CustomizeCheckoutShared.ValueObjects;
|
|
|
|
namespace CompanyManagment.App.Contracts.CustomizeWorkshopSettings;
|
|
|
|
public class CreateCustomizeWorkshopSettings
|
|
{
|
|
public WorkshopShiftStatus WorkshopShiftStatus { get; set; }
|
|
|
|
|
|
public List<CustomizeWorkshopShiftViewModel> ShiftsList { get; set; }
|
|
/// <summary>
|
|
/// تعداد روز های مجاز برای مرخصی
|
|
/// </summary>
|
|
public int LeavePermittedDays { get; set; }
|
|
|
|
public BreakTime BreakTime { get; set; }
|
|
|
|
|
|
///// <summary>
|
|
///// آیا جمعه کار میکند یا نه
|
|
///// </summary>
|
|
//public FridayWork FridayWork { get; set; }
|
|
|
|
/// <summary>
|
|
/// آیا در روز های تعطیل کار میکند
|
|
/// </summary>
|
|
public HolidayWork HolidayWork { get; set; }
|
|
|
|
public List<DayOfWeek> OffDays { get; set; }
|
|
|
|
|
|
|
|
|
|
} |