myhn/Application/GetCommentsByLink/GetCommentsByLinkQuery.cs
2021-01-08 16:26:19 +01:00

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; }
}
}