hn-dotnet/Application/ListLinks/ListLinksQuery.cs

9 lines
112 B
C#

using MediatR;
namespace HN.Application
{
public sealed class ListLinksQuery : IRequest<LinkDTO[]>
{
}
}