using System; using MediatR; namespace MyHN.Application { public class GetCommentsByLinkQuery : IRequest { public GetCommentsByLinkQuery(Guid linkId) { LinkId = linkId; } public Guid LinkId { get; set; } } }