7 lines
192 B
C#
7 lines
192 B
C#
|
|
namespace Brizco.Domain.Dtos.SmallDtos;
|
|||
|
|
|
|||
|
|
public class TaskRoutineSDto : BaseDto<TaskRoutineSDto,TaskRoutine>
|
|||
|
|
{
|
|||
|
|
public Guid TaskId { get; set; }
|
|||
|
|
public Guid RoutineId { get; set; }
|
|||
|
|
}
|