#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; } }