15 lines
251 B
C#
15 lines
251 B
C#
using System;
|
|
using MediatR;
|
|
|
|
namespace MyHN.Application
|
|
{
|
|
public class GetCommentsByLinkQuery : IRequest<CommentDto[]>
|
|
{
|
|
public GetCommentsByLinkQuery(Guid linkId)
|
|
{
|
|
LinkId = linkId;
|
|
}
|
|
|
|
public Guid LinkId { get; set; }
|
|
}
|
|
} |