4 lines
261 B
C#
4 lines
261 B
C#
|
|
namespace Netina.Domain.CommandQueries.Queries;
|
|||
|
|
|
|||
|
|
public record GetCommentsQuery(int Page = 0,int Count = Refers.SizeM ,Guid? ProductId = null, Guid? BlogId = null) : IRequest<List<CommentSDto>>;
|
|||
|
|
public record GetCommentQuery(Guid Id) : IRequest<CommentLDto>;
|