7 lines
168 B
C#
7 lines
168 B
C#
namespace FrontendPlaformUno.Services.Caching;
|
|
|
|
public interface IWeatherCache
|
|
{
|
|
ValueTask<IImmutableList<WeatherForecast>> GetForecast(CancellationToken token);
|
|
}
|