API การลา 01-03
This commit is contained in:
parent
32686c3e0b
commit
cffb53c1f5
29 changed files with 6391 additions and 4 deletions
16
BMA.EHR.Leave.Service/DTOs/LeaveRequest/GetLeaveCheckDto.cs
Normal file
16
BMA.EHR.Leave.Service/DTOs/LeaveRequest/GetLeaveCheckDto.cs
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace BMA.EHR.Leave.Service.DTOs.LeaveRequest
|
||||
{
|
||||
public class GetLeaveCheckDto
|
||||
{
|
||||
[Required]
|
||||
public Guid Type { get; set; } = Guid.Empty;
|
||||
|
||||
[Required]
|
||||
public DateTime StartLeaveDate { get; set; } = DateTime.MinValue;
|
||||
|
||||
[Required]
|
||||
public DateTime EndLeaveDate { get; set;} = DateTime.MinValue;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue