Files
predavanja/Events-WebApi/Events.WebAPI.Contract/LookupQueries/LookupCountryQuery.cs
2026-05-10 23:39:55 +02:00

10 lines
205 B
C#

using Events.WebAPI.Contract.DTOs;
using MediatR;
namespace Events.WebAPI.Contract.LookupQueries;
public class LookupCountryQuery : IRequest<List<IdName<string>>>
{
public string? Text { get; set; }
}