add shift duration on create leave

This commit is contained in:
MahanCh
2025-04-08 19:27:25 +03:30
parent a4bdd55161
commit d4f56b2d82
28 changed files with 11705 additions and 1579 deletions

View File

@@ -4,6 +4,8 @@ using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using CompanyManagment.App.Contracts.CustomizeWorkshopSettings;
using CompanyManagment.App.Contracts.WorkingHoursTemp;
namespace CompanyManagment.App.Contracts.Leave;
@@ -32,4 +34,7 @@ public class CreateLeave
public int Year { get; set; }
public int Month { get; set; }
public List<LeaveViewModel> LeaveSearch { get; set; }
public List<CustomizeRotatingShiftsViewModel> RotatingShifts { get; set; }
public bool HasRollCall { get; set; }
public CustomizeRotatingShiftsViewModel SelectedShift { get; set; }
}