Api/Netina.Domain/Dtos/RequestDtos/OrderProductRequestDto.cs

8 lines
179 B
C#
Raw Permalink Normal View History

2024-04-16 20:01:34 +03:30
namespace Netina.Domain.Dtos.RequestDtos;
public class OrderProductRequestDto
{
public int Count { get; internal set; }
public Guid ProductId { get; internal set; }
}