2024-07-06 21:20:10 +03:30
|
|
|
|
using Brizco.Domain.Entities.Tasks;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Brizco.Domain.Dtos.SmallDtos;
|
2023-11-18 22:23:23 +03:30
|
|
|
|
|
|
|
|
|
|
public class TaskRoutineSDto : BaseDto<TaskRoutineSDto,TaskRoutine>
|
|
|
|
|
|
{
|
|
|
|
|
|
public Guid TaskId { get; set; }
|
|
|
|
|
|
public Guid RoutineId { get; set; }
|
|
|
|
|
|
}
|