WebApi + ClientApp, GraphQL, Reflection
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
using Events.WebAPI.Contract.DTOs;
|
||||
using MediatR;
|
||||
|
||||
namespace Events.WebAPI.Contract.LookupQueries;
|
||||
|
||||
public class LookupCountryQuery : IRequest<List<IdName<string>>>
|
||||
{
|
||||
public string? Text { get; set; }
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
using Events.WebAPI.Contract.DTOs;
|
||||
using MediatR;
|
||||
|
||||
namespace Events.WebAPI.Contract.LookupQueries;
|
||||
|
||||
public class LookupPeopleQuery : IRequest<List<IdName<int>>>
|
||||
{
|
||||
public string? Text { get; set; }
|
||||
|
||||
public string? CountryCode { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user