23 lines
648 B
C#
23 lines
648 B
C#
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; }
|
|
|
|
|
|
public int Amount { get; set; }
|
|
public PurchaseAmountType AmountType { get; set; }
|
|
|
|
|
|
|
|
public List<TaskShiftSDto> Shifts { get; set; } = new();
|
|
|
|
public List<TaskPositionSDto> Positions { get; set; } = new();
|
|
} |