8 lines
255 B
C#
8 lines
255 B
C#
|
|
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();
|
|||
|
|
}
|