2023-09-18 09:45:02 +03:30
|
|
|
|
namespace Brizco.Domain.Dtos.SmallDtos;
|
|
|
|
|
|
|
|
|
|
|
|
public class TaskSDto : BaseDto<TaskSDto,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; }
|
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-09-18 15:41:41 +03:30
|
|
|
|
public Guid ComplexId { get; set; }
|
2023-11-18 22:23:23 +03:30
|
|
|
|
public TaskScheduleType ScheduleType { get; set; }
|
2023-09-18 09:45:02 +03:30
|
|
|
|
|
2023-11-19 22:06:49 +03:30
|
|
|
|
public List<string> Shifts { get; set; } = new();
|
|
|
|
|
|
public List<string> Routines { get; set; } = new();
|
|
|
|
|
|
public List<string> Positions { get; set; } = new();
|
2023-09-18 09:45:02 +03:30
|
|
|
|
|
|
|
|
|
|
public int Amount { get; set; }
|
|
|
|
|
|
public PurchaseAmountType AmountType { get; set; }
|
|
|
|
|
|
}
|