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