7 lines
147 B
C#
7 lines
147 B
C#
|
|
namespace Brizco.Domain.Dtos.SmallDtos;
|
|||
|
|
|
|||
|
|
public class TaskUserSDto
|
|||
|
|
{
|
|||
|
|
public Guid UserId { get; set; }
|
|||
|
|
public Guid TaskId { get; set; }
|
|||
|
|
}
|