Files
T
2023-09-16 14:46:58 -04:00

11 lines
313 B
C#

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