hn-dotnet/Application/GetLinkComments/GetLinkCommentsQuery.cs
2020-12-11 12:01:59 +01:00

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