Api/Netina.Domain/Dtos/ResponseDtos/GetProductResponseDto.cs

6 lines
151 B
C#

namespace Netina.Domain.Dtos.ResponseDtos;
public class GetProductResponseDto
{
public ProductLDto Product { get; set; } = new ProductLDto();
}