7 lines
214 B
C#
7 lines
214 B
C#
|
|
namespace Brizco.Domain.CommandQueries.Queries;
|
|||
|
|
|
|||
|
|
public sealed record GetSectionsQuery(int Page = 0) :
|
|||
|
|
IRequest<List<SectionSDto>>;
|
|||
|
|
|
|||
|
|
public sealed record GetSectionQuery(Guid Id) :
|
|||
|
|
IRequest<SectionLDto>;
|