2026-03-03 19:19:21 +01:00
|
|
|
namespace WorkClub.Application.Tasks.DTOs;
|
|
|
|
|
|
|
|
|
|
public record TaskDetailDto(
|
|
|
|
|
Guid Id,
|
|
|
|
|
string Title,
|
|
|
|
|
string? Description,
|
|
|
|
|
string Status,
|
|
|
|
|
Guid? AssigneeId,
|
|
|
|
|
Guid CreatedById,
|
|
|
|
|
Guid ClubId,
|
|
|
|
|
DateTimeOffset? DueDate,
|
|
|
|
|
DateTimeOffset CreatedAt,
|
2026-03-09 15:47:57 +01:00
|
|
|
DateTimeOffset UpdatedAt,
|
|
|
|
|
bool IsAssignedToMe
|
2026-03-03 19:19:21 +01:00
|
|
|
);
|