7 lines
165 B
C#
7 lines
165 B
C#
|
|
namespace Netina.Domain.Dtos.ResponseDtos.Torob;
|
|||
|
|
public class TorobPagedResponseDto
|
|||
|
|
{
|
|||
|
|
public List<TorobProductResponseDto> Products { get; set; } = new();
|
|||
|
|
}
|
|||
|
|
|