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.SmallDtos;
|
|
|
|
|
|
|
|
|
|
|
|
public class TaskSDto : BaseDto<TaskSDto,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-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();
|
2024-05-06 14:08:15 +03:30
|
|
|
|
public List<string> Days { get; set; } = new();
|
2023-09-18 09:45:02 +03:30
|
|
|
|
|
|
|
|
|
|
public int Amount { get; set; }
|
|
|
|
|
|
public PurchaseAmountType AmountType { get; set; }
|
|
|
|
|
|
}
|