2024-07-06 21:20:10 +03:30
|
|
|
|
using Brizco.Domain.Entities.Tasks;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Brizco.Domain.Dtos.SmallDtos;
|
2023-09-18 09:45:02 +03:30
|
|
|
|
|
2024-02-21 02:07:41 +03:30
|
|
|
|
public class TaskShiftSDto : BaseDto<TaskShiftSDto,TaskShift>
|
2023-09-18 09:45:02 +03:30
|
|
|
|
{
|
|
|
|
|
|
public Guid ShiftId { get; set; }
|
2024-02-21 02:07:41 +03:30
|
|
|
|
public string ShiftName { get; set; } = string.Empty;
|
2023-09-18 09:45:02 +03:30
|
|
|
|
public Guid TaskId { get; set; }
|
2024-02-21 02:07:41 +03:30
|
|
|
|
public string TaskTitle { get; set; } = string.Empty;
|
2023-09-18 09:45:02 +03:30
|
|
|
|
}
|