6 lines
155 B
C#
6 lines
155 B
C#
|
|
namespace NetinaShop.Domain.Dtos.ResponseDtos;
|
|||
|
|
|
|||
|
|
public class GetProductResponseDto
|
|||
|
|
{
|
|||
|
|
public ProductLDto Product { get; set; } = new ProductLDto();
|
|||
|
|
}
|