using System; using System.ComponentModel.DataAnnotations; using MediatR; namespace HN.Application { public sealed class GetLinkCommentsQuery : IRequest { [Required] public Guid LinkId { get; set; } public GetLinkCommentsQuery(Guid linkId) { LinkId = linkId; } } }