EI-Image-Viewer-Api/IRaCIS.Core.Application/Service/Doctor/DTO/HolidayModel.cs

14 lines
326 B
C#

using System;
namespace IRaCIS.Application.Contracts
{
public class VacationCommand
{
public Guid? Id { get; set; }
public Guid DoctorId { get; set; }
public DateTime StartDate { get; set; }
public DateTime EndDate { get; set; }
public int Status { get; set; } = 1;
}
}