10 lines
166 B
C#
10 lines
166 B
C#
|
using System.Text.Json;
|
|||
|
|
|||
|
namespace WeatherDashboard.Web.Services
|
|||
|
{
|
|||
|
public interface IForecastService
|
|||
|
{
|
|||
|
Task<WeatherSet> GetWeatherAsync();
|
|||
|
}
|
|||
|
}
|