8 lines
187 B
C#
8 lines
187 B
C#
|
|
using Netina.Domain.Dtos.LargDtos;
|
|||
|
|
|
|||
|
|
namespace Netina.Domain.Dtos.ResponseDtos;
|
|||
|
|
|
|||
|
|
public class GetProductResponseDto
|
|||
|
|
{
|
|||
|
|
public ProductLDto Product { get; set; } = new ProductLDto();
|
|||
|
|
}
|