WeatherDashboard/WeatherDashboard.Web/Services/IForecastService.cs
2023-02-09 22:33:02 -05:00

10 lines
166 B
C#

using System.Text.Json;
namespace WeatherDashboard.Web.Services
{
public interface IForecastService
{
Task<WeatherSet> GetWeatherAsync();
}
}