hn-dotnet/Application/GetLinkComments/GetLinkCommentsQuery.cs

17 lines
312 B
C#

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