using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace BMA.EHR.Leave.Service.DTOs.LeaveRequest { /// /// ข้อมูลสำหรับสร้าง Job ประมวลผลวันลา โดยมีช่วงวันที่เริ่มต้นและสิ้นสุดของการประมวลผลวันลา /// public class CreateLeaveProcessJobDto { /// /// วันที่เริ่มต้นของการประมวลผลวันลา /// public DateTime StartDate { get; set; } /// /// วันที่สิ้นสุดของการประมวลผลวันลา /// public DateTime EndDate { get; set; } } }