26 lines
1.2 KiB
C#
26 lines
1.2 KiB
C#
namespace Brizco.Domain.Dtos.SmallDtos;
|
|
|
|
public class ActivitySDto : BaseDto<ActivitySDto , Activity>
|
|
{
|
|
public TaskType Type { get; internal set; }
|
|
public string Title { get; internal set; } = string.Empty;
|
|
public string Description { get; internal set; } = string.Empty;
|
|
public bool IsDisposable { get; internal set; }
|
|
public DateTime SetFor { get; internal set; }
|
|
public bool HasDisposed { get; internal set; }
|
|
public TaskScheduleType ScheduleType { get; set; }
|
|
public string UnDoneReason { get; set; } = string.Empty;
|
|
public ActivityStatus Status { get; internal set; }
|
|
public DateTime DoneAt { get; internal set; }
|
|
public bool IsDone { get; set; }
|
|
public string ShiftTitle { get; set; } = string.Empty;
|
|
public string PerformanceDescription { get; internal set; } = string.Empty;
|
|
public string UserFirstName { get; set; } = string.Empty;
|
|
public string UserLastName { get; set; } = string.Empty;
|
|
public string UserFullName => UserFirstName + " " + UserLastName;
|
|
|
|
|
|
public int Amount { get; internal set; }
|
|
public Guid ShiftId { get; internal set; }
|
|
public PurchaseAmountType AmountType { get; internal set; }
|
|
} |