mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-07-16 17:47:22 +00:00
9 lines
280 B
C#
9 lines
280 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>>; |