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; }
|
|
|
|
|
|
public DateTime SetFor { get; set; }
|
|
|
|
|
|
public bool HasDisposed { get; set; }
|
2023-09-18 15:41:41 +03:30
|
|
|
|
public Guid ComplexId { get; set; }
|
2023-09-18 09:45:02 +03:30
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public int Amount { get; set; }
|
|
|
|
|
|
public PurchaseAmountType AmountType { get; set; }
|
|
|
|
|
|
}
|