namespace Netina.Domain.Dtos.ResponseDtos.Zarehbin;
public class ZarehbinPagedResponseDto
{
public int count { get; set; }
public int total_pages_count { get; set; }
public List<ZarehbinProductResponseDto> products { get; set; } = new();
}