2023-09-18 15:41:41 +03:30
|
|
|
|
using Brizco.Domain.Entities.Shift;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Brizco.Domain.Dtos.SmallDtos;
|
|
|
|
|
|
|
|
|
|
|
|
public class ShiftPlanSDto : BaseDto<ShiftPlanSDto,ShiftPlan>
|
|
|
|
|
|
{
|
2023-12-11 14:32:29 +03:30
|
|
|
|
public DateTime PlanFor { get; internal set; }
|
|
|
|
|
|
public bool IsCompleted { get; internal set; }
|
|
|
|
|
|
public int UndoneActivitiesCount { get; set; }
|
|
|
|
|
|
public int DoneActivitiesCount { get; set; }
|
|
|
|
|
|
public int TotalActivitiesCount { get; set; }
|
2024-02-27 14:20:41 +03:30
|
|
|
|
public int StaffCount { get; set; }
|
2023-12-11 14:32:29 +03:30
|
|
|
|
public int CompletePercent { get; internal set; }
|
|
|
|
|
|
public string CompleteDescription { get; internal set; } = string.Empty;
|
2023-09-18 15:41:41 +03:30
|
|
|
|
public Guid ShiftId { get; set; }
|
|
|
|
|
|
public string ShiftTitle { get; internal set; } = string.Empty;
|
|
|
|
|
|
}
|