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

18 lines
753 B
C#
Raw Permalink Normal View History

2024-08-11 19:20:09 +03:30
namespace Brizco.Domain.Dtos.SmallDtos;
2023-09-15 12:37:02 +03:30
public class ShiftSDto : BaseDto<ShiftSDto,Shift>
{
public string Title { get; set; } = string.Empty;
public string Description { get; set; } = string.Empty;
public int UndoneActivitiesCount { get; set; }
public int DoneActivitiesCount { get; set; }
public int TotalActivitiesCount { get; set; }
public Guid CurrentShiftPlanId { get; set; }
public bool HasCurrentShiftPlan { get; set; }
public bool IsCompleted { get; set; }
2023-09-15 12:37:02 +03:30
public TimeSpan StartAt { get; set; }
public TimeSpan EndAt { get; set; }
public Guid ComplexId { get; set; }
2023-11-14 16:21:49 +03:30
public List<DayOfWeek> Days { get; set; } = new();
public string CurrentSupervisorFullName { get; set; } = string.Empty;
2023-09-15 12:37:02 +03:30
}