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