gamenight/FrontendPlatformUno/FrontendPlatformUno/Services/Caching/IWeatherCache.cs

10 lines
264 B
C#

using FrontendPlatformUno.DataContracts;
using System.Collections.Immutable;
namespace FrontendPlatformUno.Services.Caching
{
public interface IWeatherCache
{
ValueTask<IImmutableList<WeatherForecast>> GetForecast(CancellationToken token);
}
}