mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-07-16 17:47:22 +00:00
10 lines
275 B
C#
10 lines
275 B
C#
using Features.Breweries.Dtos;
|
|
using MediatR;
|
|
|
|
namespace Features.Breweries.Queries.GetBreweryById;
|
|
|
|
/// <summary>
|
|
/// Retrieves a single brewery post by its unique identifier.
|
|
/// </summary>
|
|
public record GetBreweryByIdQuery(Guid BreweryPostId) : IRequest<BreweryDto?>;
|