2024-06-05 22:18:51 +03:30
|
|
|
|
using Netina.Domain.Dtos.ResponseDtos.Emalls;
|
|
|
|
|
|
using Netina.Domain.Dtos.ResponseDtos.Torob;
|
2024-05-07 11:01:55 +03:30
|
|
|
|
|
|
|
|
|
|
namespace Netina.Domain.CommandQueries.Queries;
|
|
|
|
|
|
|
2024-06-05 22:18:51 +03:30
|
|
|
|
public sealed record GetTorobProductsQuery(int Page = 0) : IRequest<List<TorobProductResponseDto>>;
|
|
|
|
|
|
|
|
|
|
|
|
public sealed record GetEmallsProductsQuery(int Page = 0 , int Count = 20) : IRequest<EmallsResponseDto>;
|