using Brizco.Domain.Entities.Shift; namespace Brizco.Domain.Dtos.LargDtos; public class ShiftPlanLDto : BaseDto { public DateTime StartAt { get; set; } public DateTime EndAt { get; set; } public Guid ShiftId { get; set; } public List Users { get; internal set; } = new(); }