using Refit; namespace UnoSample.Services.Endpoints; [Headers("Content-Type: application/json")] public interface IApiClient { [Get("/api/weatherforecast")] Task>> GetWeather(CancellationToken cancellationToken = default); }