Api/Brizco.Domain/Dtos/SmallDtos/ShiftPlanSDto.cs

11 lines
334 B
C#

using Brizco.Domain.Entities.Shift;
namespace Brizco.Domain.Dtos.SmallDtos;
public class ShiftPlanSDto : BaseDto<ShiftPlanSDto,ShiftPlan>
{
public DateTime StartAt { get; set; }
public DateTime EndAt { get; set; }
public Guid ShiftId { get; set; }
public string ShiftTitle { get; internal set; } = string.Empty;
}