2023-09-18 09:45:02 +03:30
|
|
|
|
using Brizco.Domain.Entities.Task;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Brizco.Domain.Dtos.LargDtos;
|
|
|
|
|
|
|
|
|
|
|
|
public class TaskLDto : BaseDto<TaskLDto, Entities.Task.Task>
|
|
|
|
|
|
{
|
|
|
|
|
|
public TaskType Type { get; set; }
|
|
|
|
|
|
public string Title { get; set; } = string.Empty;
|
|
|
|
|
|
public string Description { get; set; } = string.Empty;
|
|
|
|
|
|
public bool IsDisposable { get; set; }
|
|
|
|
|
|
public DateTime SetFor { get; set; }
|
|
|
|
|
|
public bool HasDisposed { get; set; }
|
2023-11-18 22:23:23 +03:30
|
|
|
|
public TaskScheduleType ScheduleType { get; set; }
|
2023-09-18 09:45:02 +03:30
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public int Amount { get; set; }
|
|
|
|
|
|
public PurchaseAmountType AmountType { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public List<TaskShiftSDto> Shifts { get; set; } = new();
|
|
|
|
|
|
|
2023-11-13 14:42:49 +03:30
|
|
|
|
public List<TaskPositionSDto> Positions { get; set; } = new();
|
2023-11-18 22:23:23 +03:30
|
|
|
|
|
|
|
|
|
|
public List<TaskDaySDto> Days { get; internal set; } = new();
|
|
|
|
|
|
|
|
|
|
|
|
public List<TaskRoutineSDto> Routines { get; internal set; } = new();
|
2023-09-18 09:45:02 +03:30
|
|
|
|
}
|