17 lines
518 B
C#
17 lines
518 B
C#
using CompanyManagment.App.Contracts.CustomizeWorkshopSettings;
|
|
using System.Collections.Generic;
|
|
|
|
namespace CompanyManagment.App.Contracts.Leave;
|
|
|
|
public class RotatingShiftDto
|
|
{
|
|
/// <summary>
|
|
/// آیا حضورغیاب به همراه گروهبندی گردشی دارد
|
|
/// </summary>
|
|
public bool HasRollCall {get; set;}
|
|
|
|
/// <summary>
|
|
/// لیست شیفت های گردشی پرسنل
|
|
/// </summary>
|
|
public List<CustomizeRotatingShiftsViewModel> RotatingShifts { get; set; }
|
|
} |