feat: implemetar até parte 3

This commit is contained in:
Sheila
2025-09-09 20:16:58 -03:00
parent cf9f2a1179
commit e780f5c99c
11 changed files with 197 additions and 45 deletions

View File

@@ -0,0 +1,13 @@
namespace CampusWorkshops.Api.Dtos;
public record WorkshopResponseDTO(
Guid Id,
string? Title,
string? Description,
DateTimeOffset StartAt,
DateTimeOffset EndAt,
string? Location,
int Capacity,
bool IsOnline
);