Api/Brizco.Domain/CommandQueries/Queries/SectionQueries.cs

9 lines
251 B
C#
Raw Normal View History

using Brizco.Domain.Dtos.LargeDtos;
namespace Brizco.Domain.CommandQueries.Queries;
2023-11-14 16:21:49 +03:30
public sealed record GetSectionsQuery(int Page = 0) :
IRequest<List<SectionSDto>>;
public sealed record GetSectionQuery(Guid Id) :
IRequest<SectionLDto>;