9 lines
218 B
C#
9 lines
218 B
C#
|
|
using Brizco.Domain.Entities.Task;
|
|||
|
|
|
|||
|
|
namespace Brizco.Domain.Dtos.SmallDtos;
|
|||
|
|
|
|||
|
|
public class TaskRoleSDto : BaseDto<TaskRoleSDto , TaskRole>
|
|||
|
|
{
|
|||
|
|
public Guid RoleId { get; set; }
|
|||
|
|
public Guid TaskId { get; set; }
|
|||
|
|
}
|