using Brizco.Domain.Entities.Tasks; namespace Brizco.Domain.Dtos.LargeDtos; public class ActivityLDto : BaseDto { 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 ActivityStatus Status { get; set; } public TaskScheduleType ScheduleType { get; set; } public DateTime DoneAt { get; set; } public bool IsDone { get; set; } public string PerformanceDescription { get; set; } = string.Empty; public Guid UserId { get; internal set; } public int Amount { get; set; } public PurchaseAmountType AmountType { get; set; } }