namespace GerbilManagerWebAPI.Dtos
{
/// WAITLIST: payload for POST/PUT /waiting-list.
public record WaitingListInput(
Guid? ContactId,
string? ContactName,
string? WishColor,
string? WishGender,
DateTime? RequestedAt,
string? Status,
string? Note);
/// WAITLIST: response DTO for a stored waiting-list entry.
public record WaitingListDto(
Guid Id,
Guid? ContactId,
string? ContactName,
string? WishColor,
string? WishGender,
DateTime? RequestedAt,
string Status,
string? Note,
DateTimeOffset CreatedAt);
}