myhn/Application/GetLinks/GetLinksQuery.cs
2021-01-08 16:26:19 +01:00

9 lines
106 B
C#

using MediatR;
namespace MyHN.Application
{
public class GetLinksQuery : IRequest<LinkDto[]>
{
}
}