7 lines
149 B
C#
7 lines
149 B
C#
|
|
namespace Brizco.Domain.Dtos.SmallDtos;
|
|||
|
|
|
|||
|
|
public class TaskShiftSDto
|
|||
|
|
{
|
|||
|
|
public Guid ShiftId { get; set; }
|
|||
|
|
public Guid TaskId { get; set; }
|
|||
|
|
}
|