2024-05-06 14:08:15 +03:30
|
|
|
|
namespace Brizco.Domain.Dtos.SmallDtos;
|
2023-09-18 09:45:02 +03:30
|
|
|
|
|
|
|
|
|
|
public class ActivitySDto : BaseDto<ActivitySDto , Activity>
|
|
|
|
|
|
{
|
2024-05-20 22:51:01 +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; }
|
|
|
|
|
|
public DateTime SetFor { get; set; }
|
|
|
|
|
|
public bool HasDisposed { get; set; }
|
2023-12-09 09:54:34 +03:30
|
|
|
|
public TaskScheduleType ScheduleType { get; set; }
|
|
|
|
|
|
public string UnDoneReason { get; set; } = string.Empty;
|
2024-05-20 22:51:01 +03:30
|
|
|
|
public ActivityStatus Status { get; set; }
|
|
|
|
|
|
public DateTime DoneAt { get; set; }
|
2023-09-18 09:45:02 +03:30
|
|
|
|
public bool IsDone { get; set; }
|
2023-12-12 14:54:19 +03:30
|
|
|
|
public string ShiftTitle { get; set; } = string.Empty;
|
2024-05-20 22:51:01 +03:30
|
|
|
|
public string PerformanceDescription { get; set; } = string.Empty;
|
2023-12-11 14:32:29 +03:30
|
|
|
|
public string UserFirstName { get; set; } = string.Empty;
|
|
|
|
|
|
public string UserLastName { get; set; } = string.Empty;
|
|
|
|
|
|
public string UserFullName => UserFirstName + " " + UserLastName;
|
2023-09-18 09:45:02 +03:30
|
|
|
|
|
|
|
|
|
|
|
2024-05-20 22:51:01 +03:30
|
|
|
|
public int Amount { get; set; }
|
|
|
|
|
|
public Guid ShiftPlanId { get; set; }
|
|
|
|
|
|
public PurchaseAmountType AmountType { get; set; }
|
2023-09-18 09:45:02 +03:30
|
|
|
|
}
|