Files
2026-05-10 23:39:55 +02:00

12 lines
245 B
C#

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