2024-07-06 21:20:10 +03:30
|
|
|
|
using Task = Brizco.Domain.Entities.Tasks.Task;
|
2023-09-18 09:45:02 +03:30
|
|
|
|
|
2024-07-06 21:20:10 +03:30
|
|
|
|
namespace Brizco.Domain.Dtos.LargeDtos;
|
|
|
|
|
|
|
|
|
|
|
|
public class TaskLDto : BaseDto<TaskLDto, Task>
|
2023-09-18 09:45:02 +03:30
|
|
|
|
{
|
|
|
|
|
|
public TaskType Type { get; set; }
|
|
|
|
|
|
public string Title { get; set; } = string.Empty;
|
|
|
|
|
|
public string Description { get; set; } = string.Empty;
|
|
|
|
|
|
public bool IsDisposable { get; set; }
|
2023-11-19 22:06:49 +03:30
|
|
|
|
public long SetFor { get; set; }
|
2023-09-18 09:45:02 +03:30
|
|
|
|
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();
|
2024-07-06 21:20:10 +03:30
|
|
|
|
public List<TaskDaySDto> Days { get; set; } = new();
|
|
|
|
|
|
public List<TaskRoutineSDto> Routines { get; set; } = new();
|
2023-09-18 09:45:02 +03:30
|
|
|
|
}
|