Files
work-club-manager/backend/WorkClub.Application/Shifts/DTOs/ShiftListDto.cs

19 lines
343 B
C#
Raw Normal View History

namespace WorkClub.Application.Shifts.DTOs;
public record ShiftListDto(
List<ShiftListItemDto> Items,
int Total,
int Page,
int PageSize
);
public record ShiftListItemDto(
Guid Id,
string Title,
DateTimeOffset StartTime,
DateTimeOffset EndTime,
int Capacity,
int CurrentSignups,
bool IsSignedUp
);