4 lines
213 B
C#
4 lines
213 B
C#
|
|
namespace NetinaShop.Domain.CommandQueries.Queries;
|
|||
|
|
|
|||
|
|
public sealed record GetShippingsQuery(int Page = 0) : IRequest<List<ShippingSDto>>;
|
|||
|
|
public sealed record GetShippingQuery(Guid Id) : IRequest<ShippingSDto>;
|