8 lines
350 B
C#
8 lines
350 B
C#
using Netina.Domain.Dtos.ResponseDtos.Emalls;
|
|
using Netina.Domain.Dtos.ResponseDtos.Torob;
|
|
|
|
namespace Netina.Domain.CommandQueries.Queries;
|
|
|
|
public sealed record GetTorobProductsQuery(int Page = 0) : IRequest<List<TorobProductResponseDto>>;
|
|
|
|
public sealed record GetEmallsProductsQuery(int Page = 0 , int Count = 20) : IRequest<EmallsResponseDto>; |