11 lines
340 B
C#
11 lines
340 B
C#
using Brizco.Domain.Entities.Shift;
|
|
|
|
namespace Brizco.Domain.Dtos.LargDtos;
|
|
|
|
public class ShiftPlanLDto : BaseDto<ShiftPlanLDto , ShiftPlan>
|
|
{
|
|
public DateTime StartAt { get; set; }
|
|
public DateTime EndAt { get; set; }
|
|
public Guid ShiftId { get; set; }
|
|
public List<ShiftPlanUserSDto> Users { get; internal set; } = new();
|
|
} |