using TIAMWebApp.Shared.Application.Models;
namespace TIAMWebApp.Shared.Application.Interfaces
{
public interface IWeatherForecastService
Task<WeatherForecast[]?> GetWeatherForecastAsync();
}