3 lines
135 B
C#
3 lines
135 B
C#
|
|
namespace Netina.Domain.CommandQueries.Queries;
|
|||
|
|
|
|||
|
|
public record GetSubProductsQuery(Guid ProductId) : IRequest<List<SubProductSDto>>;
|