16 lines
325 B
C#
16 lines
325 B
C#
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,
|
|
DateTimeOffset UpdatedAt,
|
|
bool IsAssignedToMe
|
|
);
|