Files
Backend-Api/WorkFlow/Application/WorkFlow.Application.Contracts/Shared/WorkFlowEmployeeWithRollCallOnLeaveViewModel.cs
2024-12-23 20:39:04 +03:30

16 lines
587 B
C#

#nullable disable
namespace WorkFlow.Application.Contracts.Shared;
public class WorkFlowEmployeeWithRollCallOnLeaveViewModel
{
public long EmployeeId { get; set; }
public long LeaveId { get; set; }
public long RollCallId { get; set; }
public string EmployeeFullName { get; set; }
public string StartOfOverlapDateFa { get; set; }
public DateTime StartOfOverlapDateTime { get; set; }
public DateTime EndOfOverlapDateTime { get; set; }
public string EndOfOverlapDateFa { get; set; }
public string StartOfOverlapTime { get; set; }
public string EndOfOverlapTime { get; set; }
}