17 lines
289 B
C#
17 lines
289 B
C#
|
|
namespace WorkClub.Application.Tasks.DTOs;
|
||
|
|
|
||
|
|
public record TaskListDto(
|
||
|
|
List<TaskListItemDto> Items,
|
||
|
|
int Total,
|
||
|
|
int Page,
|
||
|
|
int PageSize
|
||
|
|
);
|
||
|
|
|
||
|
|
public record TaskListItemDto(
|
||
|
|
Guid Id,
|
||
|
|
string Title,
|
||
|
|
string Status,
|
||
|
|
Guid? AssigneeId,
|
||
|
|
DateTimeOffset CreatedAt
|
||
|
|
);
|