using System; namespace IRaCIS.Application.ViewModels { public class VacationDTO { 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; } }