WeatherDashboard/WeatherDashboard.Web/Services/IForecastService.cs

10 lines
166 B
C#
Raw Permalink Normal View History

2023-02-10 03:33:02 +00:00
using System.Text.Json;
namespace WeatherDashboard.Web.Services
{
public interface IForecastService
{
Task<WeatherSet> GetWeatherAsync();
}
}