hn-dotnet/Application/ListLinks/ListLinksQuery.cs
2020-12-10 11:43:47 +01:00

9 lines
112 B
C#

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