mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-07-16 17:47:22 +00:00
10 lines
281 B
C#
10 lines
281 B
C#
using Features.Breweries.Dtos;
|
|
using MediatR;
|
|
|
|
namespace Features.Breweries.Queries.GetAllBreweries;
|
|
|
|
/// <summary>
|
|
/// Retrieves a paginated list of brewery posts.
|
|
/// </summary>
|
|
public record GetAllBreweriesQuery(int? Limit, int? Offset) : IRequest<IEnumerable<BreweryDto>>;
|