Files
Workshop10-API/Dtos/WorkshopResponseDTO.cs

14 lines
221 B
C#
Raw Permalink Normal View History

2025-08-25 00:06:43 -03:00
namespace CampusWorkshops.Api.Dtos;
2025-09-09 20:16:58 -03:00
public record WorkshopResponseDTO(
2025-08-25 00:06:43 -03:00
Guid Id,
string? Title,
string? Description,
DateTimeOffset StartAt,
DateTimeOffset EndAt,
string? Location,
int Capacity,
bool IsOnline
);